diff options
author | Matthew Dobson <colpatch@us.ibm.com> | 2006-03-26 04:37:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:56:59 -0500 |
commit | 53184082b070dfb077218828fdf839826102ed96 (patch) | |
tree | 77aad868cb43b78195e7ca657c1e30a6934fac44 | |
parent | a19b27ce3847c3a5d4ea6b6c91b6f7154759af23 (diff) |
[PATCH] mempool: add kmalloc allocator
Add another allocator to the common mempool code: a kmalloc/kfree allocator
This will be used by the next patch in the series to replace duplicate
mempool-backed kmalloc allocators in several places in the kernel. 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>
-rw-r--r-- | include/linux/mempool.h | 12 | ||||
-rw-r--r-- | mm/mempool.c | 17 |
2 files changed, 29 insertions, 0 deletions
diff --git a/include/linux/mempool.h b/include/linux/mempool.h index 9787572e0ae7..d23dbf076b57 100644 --- a/include/linux/mempool.h +++ b/include/linux/mempool.h | |||
@@ -39,6 +39,18 @@ void *mempool_alloc_slab(gfp_t gfp_mask, void *pool_data); | |||
39 | void mempool_free_slab(void *element, void *pool_data); | 39 | void 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 | ||
43 | * specified by pool_data | ||
44 | */ | ||
45 | void *mempool_kmalloc(gfp_t gfp_mask, void *pool_data); | ||
46 | void mempool_kfree(void *element, void *pool_data); | ||
47 | static inline mempool_t *mempool_create_kmalloc_pool(int min_nr, size_t size) | ||
48 | { | ||
49 | return mempool_create(min_nr, mempool_kmalloc, mempool_kfree, | ||
50 | (void *) size); | ||
51 | } | ||
52 | |||
53 | /* | ||
42 | * A mempool_alloc_t and mempool_free_t for a simple page allocator that | 54 | * A mempool_alloc_t and mempool_free_t for a simple page allocator that |
43 | * allocates pages of the order specified by pool_data | 55 | * allocates pages of the order specified by pool_data |
44 | */ | 56 | */ |
diff --git a/mm/mempool.c b/mm/mempool.c index 45c0112ca7b2..a1397c6a4864 100644 --- a/mm/mempool.c +++ b/mm/mempool.c | |||
@@ -291,6 +291,23 @@ void mempool_free_slab(void *element, void *pool_data) | |||
291 | EXPORT_SYMBOL(mempool_free_slab); | 291 | EXPORT_SYMBOL(mempool_free_slab); |
292 | 292 | ||
293 | /* | 293 | /* |
294 | * A commonly used alloc and free fn that kmalloc/kfrees the amount of memory | ||
295 | * specfied by pool_data | ||
296 | */ | ||
297 | void *mempool_kmalloc(gfp_t gfp_mask, void *pool_data) | ||
298 | { | ||
299 | size_t size = (size_t) pool_data; | ||
300 | return kmalloc(size, gfp_mask); | ||
301 | } | ||
302 | EXPORT_SYMBOL(mempool_kmalloc); | ||
303 | |||
304 | void mempool_kfree(void *element, void *pool_data) | ||
305 | { | ||
306 | kfree(element); | ||
307 | } | ||
308 | EXPORT_SYMBOL(mempool_kfree); | ||
309 | |||
310 | /* | ||
294 | * A simple mempool-backed page allocator that allocates pages | 311 | * A simple mempool-backed page allocator that allocates pages |
295 | * of the order specified by pool_data. | 312 | * of the order specified by pool_data. |
296 | */ | 313 | */ |