diff options
Diffstat (limited to 'include/linux/slab.h')
-rw-r--r-- | include/linux/slab.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/slab.h b/include/linux/slab.h index 1ef822e31c77..2f8f60ff294a 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
@@ -72,8 +72,9 @@ static inline void *kmem_cache_alloc_node(struct kmem_cache *cachep, | |||
72 | */ | 72 | */ |
73 | void *__kmalloc(size_t, gfp_t); | 73 | void *__kmalloc(size_t, gfp_t); |
74 | void *__kzalloc(size_t, gfp_t); | 74 | void *__kzalloc(size_t, gfp_t); |
75 | void * __must_check krealloc(const void *, size_t, gfp_t); | ||
75 | void kfree(const void *); | 76 | void kfree(const void *); |
76 | unsigned int ksize(const void *); | 77 | size_t ksize(const void *); |
77 | 78 | ||
78 | /** | 79 | /** |
79 | * kcalloc - allocate memory for an array. The memory is set to zero. | 80 | * kcalloc - allocate memory for an array. The memory is set to zero. |