aboutsummaryrefslogtreecommitdiffstats
path: root/mm/oom_kill.c
diff options
context:
space:
mode:
authorDavid Rientjes <rientjes@google.com>2007-10-17 02:25:57 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-17 11:42:46 -0400
commit7213f5066fc8a17c78389fe245de522b5cf0648a (patch)
tree76e33ed1e0bfa62cb6c2e05bd4bbf79f37ca4796 /mm/oom_kill.c
parentfe071d7e8aae5745c009c808bb8933f22a9e305a (diff)
oom: suppress extraneous stack and memory dump
Suppresses the extraneous stack and memory dump when a parallel OOM killing has been found. There's no need to fill the ring buffer with this information if its already been printed and the condition that triggered the previous OOM killer has not yet been alleviated. Cc: Andrea Arcangeli <andrea@suse.de> Acked-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/oom_kill.c')
-rw-r--r--mm/oom_kill.c27
1 files changed, 14 insertions, 13 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 00d0bd7d6a2b..5c5aa7380bd1 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -333,12 +333,20 @@ static int oom_kill_task(struct task_struct *p)
333 return 0; 333 return 0;
334} 334}
335 335
336static int oom_kill_process(struct task_struct *p, unsigned long points, 336static int oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
337 const char *message) 337 unsigned long points, const char *message)
338{ 338{
339 struct task_struct *c; 339 struct task_struct *c;
340 struct list_head *tsk; 340 struct list_head *tsk;
341 341
342 if (printk_ratelimit()) {
343 printk(KERN_WARNING "%s invoked oom-killer: "
344 "gfp_mask=0x%x, order=%d, oomkilladj=%d\n",
345 current->comm, gfp_mask, order, current->oomkilladj);
346 dump_stack();
347 show_mem();
348 }
349
342 /* 350 /*
343 * If the task is already exiting, don't alarm the sysadmin or kill 351 * If the task is already exiting, don't alarm the sysadmin or kill
344 * its children or threads, just set TIF_MEMDIE so it can die quickly 352 * its children or threads, just set TIF_MEMDIE so it can die quickly
@@ -447,14 +455,6 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
447 /* Got some memory back in the last second. */ 455 /* Got some memory back in the last second. */
448 return; 456 return;
449 457
450 if (printk_ratelimit()) {
451 printk(KERN_WARNING "%s invoked oom-killer: "
452 "gfp_mask=0x%x, order=%d, oomkilladj=%d\n",
453 current->comm, gfp_mask, order, current->oomkilladj);
454 dump_stack();
455 show_mem();
456 }
457
458 if (sysctl_panic_on_oom == 2) 458 if (sysctl_panic_on_oom == 2)
459 panic("out of memory. Compulsory panic_on_oom is selected.\n"); 459 panic("out of memory. Compulsory panic_on_oom is selected.\n");
460 460
@@ -468,7 +468,7 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
468 468
469 switch (constraint) { 469 switch (constraint) {
470 case CONSTRAINT_MEMORY_POLICY: 470 case CONSTRAINT_MEMORY_POLICY:
471 oom_kill_process(current, points, 471 oom_kill_process(current, gfp_mask, order, points,
472 "No available memory (MPOL_BIND)"); 472 "No available memory (MPOL_BIND)");
473 break; 473 break;
474 474
@@ -478,7 +478,7 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
478 /* Fall-through */ 478 /* Fall-through */
479 case CONSTRAINT_CPUSET: 479 case CONSTRAINT_CPUSET:
480 if (sysctl_oom_kill_allocating_task) { 480 if (sysctl_oom_kill_allocating_task) {
481 oom_kill_process(current, points, 481 oom_kill_process(current, gfp_mask, order, points,
482 "Out of memory (oom_kill_allocating_task)"); 482 "Out of memory (oom_kill_allocating_task)");
483 break; 483 break;
484 } 484 }
@@ -499,7 +499,8 @@ retry:
499 panic("Out of memory and no killable processes...\n"); 499 panic("Out of memory and no killable processes...\n");
500 } 500 }
501 501
502 if (oom_kill_process(p, points, "Out of memory")) 502 if (oom_kill_process(p, points, gfp_mask, order,
503 "Out of memory"))
503 goto retry; 504 goto retry;
504 505
505 break; 506 break;