aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/slab_def.h
diff options
context:
space:
mode:
authorEzequiel Garcia <elezegarcia@gmail.com>2012-09-08 16:47:52 -0400
committerPekka Enberg <penberg@kernel.org>2012-09-25 03:12:19 -0400
commitff4fcd01ec86d98d15d2fd96f22f19bb1d341b88 (patch)
tree8cc024f7284b07ccbdf01e9b90bf752ddbf974d4 /include/linux/slab_def.h
parent90f2cbbc49a8fe5a49cea1d362d90e377b949d49 (diff)
mm, slab: Remove silly function slab_buffer_size()
This function is seldom used, and can be simply replaced with cachep->size. Acked-by: David Rientjes <rientjes@google.com> Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'include/linux/slab_def.h')
-rw-r--r--include/linux/slab_def.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h
index 36d7031a1a53..604ebc832a9a 100644
--- a/include/linux/slab_def.h
+++ b/include/linux/slab_def.h
@@ -113,17 +113,12 @@ void *__kmalloc(size_t size, gfp_t flags);
113#ifdef CONFIG_TRACING 113#ifdef CONFIG_TRACING
114extern void *kmem_cache_alloc_trace(size_t size, 114extern void *kmem_cache_alloc_trace(size_t size,
115 struct kmem_cache *cachep, gfp_t flags); 115 struct kmem_cache *cachep, gfp_t flags);
116extern size_t slab_buffer_size(struct kmem_cache *cachep);
117#else 116#else
118static __always_inline void * 117static __always_inline void *
119kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags) 118kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags)
120{ 119{
121 return kmem_cache_alloc(cachep, flags); 120 return kmem_cache_alloc(cachep, flags);
122} 121}
123static inline size_t slab_buffer_size(struct kmem_cache *cachep)
124{
125 return 0;
126}
127#endif 122#endif
128 123
129static __always_inline void *kmalloc(size_t size, gfp_t flags) 124static __always_inline void *kmalloc(size_t size, gfp_t flags)