aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2012-01-10 18:08:28 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-01-10 19:30:45 -0500
commit1ebb7044c9142c67d1d2b04d84010b4810a43fd8 (patch)
treebfacd21f2aabf0b727d678797e2764d010918f29 /mm
parent0565d317768cc66b13e37184f29d9f270c2886dc (diff)
mempool: fix first round failure behavior
mempool modifies gfp_mask so that the backing allocator doesn't try too hard or trigger warning message when there's pool to fall back on. In addition, for the first try, it removes __GFP_WAIT and IO, so that it doesn't trigger reclaim or wait when allocation can be fulfilled from pool; however, when that allocation fails and pool is empty too, it waits for the pool to be replenished before retrying. Allocation which could have succeeded after a bit of reclaim has to wait on the reserved items and it's not like mempool doesn't retry with __GFP_WAIT and IO. It just does that *after* someone returns an element, pointlessly delaying things. Fix it by retrying immediately if the first round of allocation attempts w/o __GFP_WAIT and IO fails. [akpm@linux-foundation.org: shorten the lock hold time] Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/mempool.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/mm/mempool.c b/mm/mempool.c
index e3a802a0cea0..d9049811f352 100644
--- a/mm/mempool.c
+++ b/mm/mempool.c
@@ -221,14 +221,23 @@ repeat_alloc:
221 return element; 221 return element;
222 } 222 }
223 223
224 /* We must not sleep in the GFP_ATOMIC case */ 224 /*
225 * We use gfp mask w/o __GFP_WAIT or IO for the first round. If
226 * alloc failed with that and @pool was empty, retry immediately.
227 */
228 if (gfp_temp != gfp_mask) {
229 spin_unlock_irqrestore(&pool->lock, flags);
230 gfp_temp = gfp_mask;
231 goto repeat_alloc;
232 }
233
234 /* We must not sleep if !__GFP_WAIT */
225 if (!(gfp_mask & __GFP_WAIT)) { 235 if (!(gfp_mask & __GFP_WAIT)) {
226 spin_unlock_irqrestore(&pool->lock, flags); 236 spin_unlock_irqrestore(&pool->lock, flags);
227 return NULL; 237 return NULL;
228 } 238 }
229 239
230 /* Let's wait for someone else to return an element to @pool */ 240 /* Let's wait for someone else to return an element to @pool */
231 gfp_temp = gfp_mask;
232 init_wait(&wait); 241 init_wait(&wait);
233 prepare_to_wait(&pool->wait, &wait, TASK_UNINTERRUPTIBLE); 242 prepare_to_wait(&pool->wait, &wait, TASK_UNINTERRUPTIBLE);
234 243