aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mempool.h
diff options
context:
space:
mode:
authorMatthew Dobson <colpatch@us.ibm.com>2006-03-26 04:37:48 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-26 11:56:59 -0500
commitf183323d3822dee4d7b3147a59b6e8987fe201e0 (patch)
treef1cec982da7ae954af52584630c273976fd43127 /include/linux/mempool.h
parent0eaae62abaa1ad1f231932b6cdd9fb1b91df6651 (diff)
[PATCH] mempool: add kzalloc allocator
Add another allocator to the common mempool code: a kzalloc/kfree allocator This will be used by the next patch in the series to replace a mempool-backed kzalloc allocator. It is also very likely that there will be more users in the future. Signed-off-by: Matthew Dobson <colpatch@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/mempool.h')
-rw-r--r--include/linux/mempool.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/linux/mempool.h b/include/linux/mempool.h
index d23dbf076b57..41570ce353eb 100644
--- a/include/linux/mempool.h
+++ b/include/linux/mempool.h
@@ -39,16 +39,22 @@ void *mempool_alloc_slab(gfp_t gfp_mask, void *pool_data);
39void mempool_free_slab(void *element, void *pool_data); 39void mempool_free_slab(void *element, void *pool_data);
40 40
41/* 41/*
42 * A mempool_alloc_t and mempool_free_t to kmalloc the amount of memory 42 * 2 mempool_alloc_t's and a mempool_free_t to kmalloc/kzalloc and kfree
43 * specified by pool_data 43 * the amount of memory specified by pool_data
44 */ 44 */
45void *mempool_kmalloc(gfp_t gfp_mask, void *pool_data); 45void *mempool_kmalloc(gfp_t gfp_mask, void *pool_data);
46void *mempool_kzalloc(gfp_t gfp_mask, void *pool_data);
46void mempool_kfree(void *element, void *pool_data); 47void mempool_kfree(void *element, void *pool_data);
47static inline mempool_t *mempool_create_kmalloc_pool(int min_nr, size_t size) 48static inline mempool_t *mempool_create_kmalloc_pool(int min_nr, size_t size)
48{ 49{
49 return mempool_create(min_nr, mempool_kmalloc, mempool_kfree, 50 return mempool_create(min_nr, mempool_kmalloc, mempool_kfree,
50 (void *) size); 51 (void *) size);
51} 52}
53static inline mempool_t *mempool_create_kzalloc_pool(int min_nr, size_t size)
54{
55 return mempool_create(min_nr, mempool_kzalloc, mempool_kfree,
56 (void *) size);
57}
52 58
53/* 59/*
54 * A mempool_alloc_t and mempool_free_t for a simple page allocator that 60 * A mempool_alloc_t and mempool_free_t for a simple page allocator that