diff options
author | Christoph Lameter <clameter@sgi.com> | 2007-07-17 07:03:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-17 13:23:01 -0400 |
commit | 81cda6626178cd55297831296ba8ecedbfd8b52d (patch) | |
tree | fa35a6a04db63080bbeb42f33f4b4a891b7fc96c /mm/slob.c | |
parent | ce15fea8274acca06daa1674322d37a7d3f0036b (diff) |
Slab allocators: Cleanup zeroing allocations
It becomes now easy to support the zeroing allocs with generic inline
functions in slab.h. Provide inline definitions to allow the continued use of
kzalloc, kmem_cache_zalloc etc but remove other definitions of zeroing
functions from the slab allocators and util.c.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slob.c')
-rw-r--r-- | mm/slob.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -543,16 +543,6 @@ void *kmem_cache_alloc_node(struct kmem_cache *c, gfp_t flags, int node) | |||
543 | } | 543 | } |
544 | EXPORT_SYMBOL(kmem_cache_alloc_node); | 544 | EXPORT_SYMBOL(kmem_cache_alloc_node); |
545 | 545 | ||
546 | void *kmem_cache_zalloc(struct kmem_cache *c, gfp_t flags) | ||
547 | { | ||
548 | void *ret = kmem_cache_alloc(c, flags); | ||
549 | if (ret) | ||
550 | memset(ret, 0, c->size); | ||
551 | |||
552 | return ret; | ||
553 | } | ||
554 | EXPORT_SYMBOL(kmem_cache_zalloc); | ||
555 | |||
556 | static void __kmem_cache_free(void *b, int size) | 546 | static void __kmem_cache_free(void *b, int size) |
557 | { | 547 | { |
558 | if (size < PAGE_SIZE) | 548 | if (size < PAGE_SIZE) |