4 * memory buffer pool support. Such pools are mostly used
5 * for guaranteed, deadlock-free memory allocations during
8 * started by Ingo Molnar, Copyright (C) 2001
12 #include <linux/slab.h>
13 #include <linux/module.h>
14 #include <linux/mempool.h>
15 #include <linux/blkdev.h>
16 #include <linux/writeback.h>
18 static void add_element(mempool_t
*pool
, void *element
)
20 BUG_ON(pool
->curr_nr
>= pool
->min_nr
);
21 pool
->elements
[pool
->curr_nr
++] = element
;
24 static void *remove_element(mempool_t
*pool
)
26 BUG_ON(pool
->curr_nr
<= 0);
27 return pool
->elements
[--pool
->curr_nr
];
30 static void free_pool(mempool_t
*pool
)
32 while (pool
->curr_nr
) {
33 void *element
= remove_element(pool
);
34 pool
->free(element
, pool
->pool_data
);
36 kfree(pool
->elements
);
41 * mempool_create - create a memory pool
42 * @min_nr: the minimum number of elements guaranteed to be
43 * allocated for this pool.
44 * @alloc_fn: user-defined element-allocation function.
45 * @free_fn: user-defined element-freeing function.
46 * @pool_data: optional private data available to the user-defined functions.
48 * this function creates and allocates a guaranteed size, preallocated
49 * memory pool. The pool can be used from the mempool_alloc and mempool_free
50 * functions. This function might sleep. Both the alloc_fn() and the free_fn()
51 * functions might sleep - as long as the mempool_alloc function is not called
54 mempool_t
* mempool_create(int min_nr
, mempool_alloc_t
*alloc_fn
,
55 mempool_free_t
*free_fn
, void *pool_data
)
59 pool
= kmalloc(sizeof(*pool
), GFP_KERNEL
);
62 memset(pool
, 0, sizeof(*pool
));
63 pool
->elements
= kmalloc(min_nr
* sizeof(void *), GFP_KERNEL
);
64 if (!pool
->elements
) {
68 spin_lock_init(&pool
->lock
);
69 pool
->min_nr
= min_nr
;
70 pool
->pool_data
= pool_data
;
71 init_waitqueue_head(&pool
->wait
);
72 pool
->alloc
= alloc_fn
;
76 * First pre-allocate the guaranteed number of buffers.
78 while (pool
->curr_nr
< pool
->min_nr
) {
81 element
= pool
->alloc(GFP_KERNEL
, pool
->pool_data
);
82 if (unlikely(!element
)) {
86 add_element(pool
, element
);
90 EXPORT_SYMBOL(mempool_create
);
93 * mempool_resize - resize an existing memory pool
94 * @pool: pointer to the memory pool which was allocated via
96 * @new_min_nr: the new minimum number of elements guaranteed to be
97 * allocated for this pool.
98 * @gfp_mask: the usual allocation bitmask.
100 * This function shrinks/grows the pool. In the case of growing,
101 * it cannot be guaranteed that the pool will be grown to the new
102 * size immediately, but new mempool_free() calls will refill it.
104 * Note, the caller must guarantee that no mempool_destroy is called
105 * while this function is running. mempool_alloc() & mempool_free()
106 * might be called (eg. from IRQ contexts) while this function executes.
108 int mempool_resize(mempool_t
*pool
, int new_min_nr
, unsigned int __nocast gfp_mask
)
114 BUG_ON(new_min_nr
<= 0);
116 spin_lock_irqsave(&pool
->lock
, flags
);
117 if (new_min_nr
<= pool
->min_nr
) {
118 while (new_min_nr
< pool
->curr_nr
) {
119 element
= remove_element(pool
);
120 spin_unlock_irqrestore(&pool
->lock
, flags
);
121 pool
->free(element
, pool
->pool_data
);
122 spin_lock_irqsave(&pool
->lock
, flags
);
124 pool
->min_nr
= new_min_nr
;
127 spin_unlock_irqrestore(&pool
->lock
, flags
);
130 new_elements
= kmalloc(new_min_nr
* sizeof(*new_elements
), gfp_mask
);
134 spin_lock_irqsave(&pool
->lock
, flags
);
135 if (unlikely(new_min_nr
<= pool
->min_nr
)) {
136 /* Raced, other resize will do our work */
137 spin_unlock_irqrestore(&pool
->lock
, flags
);
141 memcpy(new_elements
, pool
->elements
,
142 pool
->curr_nr
* sizeof(*new_elements
));
143 kfree(pool
->elements
);
144 pool
->elements
= new_elements
;
145 pool
->min_nr
= new_min_nr
;
147 while (pool
->curr_nr
< pool
->min_nr
) {
148 spin_unlock_irqrestore(&pool
->lock
, flags
);
149 element
= pool
->alloc(gfp_mask
, pool
->pool_data
);
152 spin_lock_irqsave(&pool
->lock
, flags
);
153 if (pool
->curr_nr
< pool
->min_nr
) {
154 add_element(pool
, element
);
156 spin_unlock_irqrestore(&pool
->lock
, flags
);
157 pool
->free(element
, pool
->pool_data
); /* Raced */
162 spin_unlock_irqrestore(&pool
->lock
, flags
);
166 EXPORT_SYMBOL(mempool_resize
);
169 * mempool_destroy - deallocate a memory pool
170 * @pool: pointer to the memory pool which was allocated via
173 * this function only sleeps if the free_fn() function sleeps. The caller
174 * has to guarantee that all elements have been returned to the pool (ie:
175 * freed) prior to calling mempool_destroy().
177 void mempool_destroy(mempool_t
*pool
)
179 if (pool
->curr_nr
!= pool
->min_nr
)
180 BUG(); /* There were outstanding elements */
183 EXPORT_SYMBOL(mempool_destroy
);
186 * mempool_alloc - allocate an element from a specific memory pool
187 * @pool: pointer to the memory pool which was allocated via
189 * @gfp_mask: the usual allocation bitmask.
191 * this function only sleeps if the alloc_fn function sleeps or
192 * returns NULL. Note that due to preallocation, this function
193 * *never* fails when called from process contexts. (it might
194 * fail if called from an IRQ context.)
196 void * mempool_alloc(mempool_t
*pool
, unsigned int __nocast gfp_mask
)
203 might_sleep_if(gfp_mask
& __GFP_WAIT
);
205 gfp_mask
|= __GFP_NOMEMALLOC
; /* don't allocate emergency reserves */
206 gfp_mask
|= __GFP_NORETRY
; /* don't loop in __alloc_pages */
207 gfp_mask
|= __GFP_NOWARN
; /* failures are OK */
209 gfp_temp
= gfp_mask
& ~(__GFP_WAIT
|__GFP_IO
);
213 element
= pool
->alloc(gfp_temp
, pool
->pool_data
);
214 if (likely(element
!= NULL
))
217 spin_lock_irqsave(&pool
->lock
, flags
);
218 if (likely(pool
->curr_nr
)) {
219 element
= remove_element(pool
);
220 spin_unlock_irqrestore(&pool
->lock
, flags
);
223 spin_unlock_irqrestore(&pool
->lock
, flags
);
225 /* We must not sleep in the GFP_ATOMIC case */
226 if (!(gfp_mask
& __GFP_WAIT
))
229 /* Now start performing page reclaim */
231 prepare_to_wait(&pool
->wait
, &wait
, TASK_UNINTERRUPTIBLE
);
235 finish_wait(&pool
->wait
, &wait
);
239 EXPORT_SYMBOL(mempool_alloc
);
242 * mempool_free - return an element to the pool.
243 * @element: pool element pointer.
244 * @pool: pointer to the memory pool which was allocated via
247 * this function only sleeps if the free_fn() function sleeps.
249 void mempool_free(void *element
, mempool_t
*pool
)
254 if (pool
->curr_nr
< pool
->min_nr
) {
255 spin_lock_irqsave(&pool
->lock
, flags
);
256 if (pool
->curr_nr
< pool
->min_nr
) {
257 add_element(pool
, element
);
258 spin_unlock_irqrestore(&pool
->lock
, flags
);
259 wake_up(&pool
->wait
);
262 spin_unlock_irqrestore(&pool
->lock
, flags
);
264 pool
->free(element
, pool
->pool_data
);
266 EXPORT_SYMBOL(mempool_free
);
269 * A commonly used alloc and free fn.
271 void *mempool_alloc_slab(unsigned int __nocast gfp_mask
, void *pool_data
)
273 kmem_cache_t
*mem
= (kmem_cache_t
*) pool_data
;
274 return kmem_cache_alloc(mem
, gfp_mask
);
276 EXPORT_SYMBOL(mempool_alloc_slab
);
278 void mempool_free_slab(void *element
, void *pool_data
)
280 kmem_cache_t
*mem
= (kmem_cache_t
*) pool_data
;
281 kmem_cache_free(mem
, element
);
283 EXPORT_SYMBOL(mempool_free_slab
);