diff options
Diffstat (limited to 'include/linux/mempool.h')
-rw-r--r-- | include/linux/mempool.h | 12 |
1 files changed, 12 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 | */ |