aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorDavid Rientjes <rientjes@google.com>2010-08-09 20:18:54 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2010-08-09 23:44:57 -0400
commit309ed882508cc471320ff79265e7340774d6746c (patch)
tree28321b30bc420c62554ef6a705ec4bc70651b473 /mm
parent03668b3ceb0c7a95e09f1b6169f5270ffc1a19f6 (diff)
oom: extract panic helper function
There are various points in the oom killer where the kernel must determine whether to panic or not. It's better to extract this to a helper function to remove all the confusion as to its semantics. Also fix a call to dump_header() where tasklist_lock is not read- locked, as required. There's no functional change with this patch. Acked-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> Signed-off-by: David Rientjes <rientjes@google.com> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> 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/oom_kill.c53
1 files changed, 29 insertions, 24 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 01b5e01e52c..fca886d8b5f 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -521,17 +521,40 @@ static int oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
521 return oom_kill_task(victim); 521 return oom_kill_task(victim);
522} 522}
523 523
524/*
525 * Determines whether the kernel must panic because of the panic_on_oom sysctl.
526 */
527static void check_panic_on_oom(enum oom_constraint constraint, gfp_t gfp_mask,
528 int order)
529{
530 if (likely(!sysctl_panic_on_oom))
531 return;
532 if (sysctl_panic_on_oom != 2) {
533 /*
534 * panic_on_oom == 1 only affects CONSTRAINT_NONE, the kernel
535 * does not panic for cpuset, mempolicy, or memcg allocation
536 * failures.
537 */
538 if (constraint != CONSTRAINT_NONE)
539 return;
540 }
541 read_lock(&tasklist_lock);
542 dump_header(NULL, gfp_mask, order, NULL);
543 read_unlock(&tasklist_lock);
544 panic("Out of memory: %s panic_on_oom is enabled\n",
545 sysctl_panic_on_oom == 2 ? "compulsory" : "system-wide");
546}
547
524#ifdef CONFIG_CGROUP_MEM_RES_CTLR 548#ifdef CONFIG_CGROUP_MEM_RES_CTLR
525void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask) 549void mem_cgroup_out_of_memory(struct mem_cgroup *mem, gfp_t gfp_mask)
526{ 550{
527 unsigned long points = 0; 551 unsigned long points = 0;
528 struct task_struct *p; 552 struct task_struct *p;
529 553
530 if (sysctl_panic_on_oom == 2) 554 check_panic_on_oom(CONSTRAINT_MEMCG, gfp_mask, 0);
531 panic("out of memory(memcg). panic_on_oom is selected.\n");
532 read_lock(&tasklist_lock); 555 read_lock(&tasklist_lock);
533retry: 556retry:
534 p = select_bad_process(&points, mem, CONSTRAINT_NONE, NULL); 557 p = select_bad_process(&points, mem, CONSTRAINT_MEMCG, NULL);
535 if (!p || PTR_ERR(p) == -1UL) 558 if (!p || PTR_ERR(p) == -1UL)
536 goto out; 559 goto out;
537 560
@@ -632,8 +655,8 @@ retry:
632 655
633 /* Found nothing?!?! Either we hang forever, or we panic. */ 656 /* Found nothing?!?! Either we hang forever, or we panic. */
634 if (!p) { 657 if (!p) {
635 read_unlock(&tasklist_lock);
636 dump_header(NULL, gfp_mask, order, NULL); 658 dump_header(NULL, gfp_mask, order, NULL);
659 read_unlock(&tasklist_lock);
637 panic("Out of memory and no killable processes...\n"); 660 panic("Out of memory and no killable processes...\n");
638 } 661 }
639 662
@@ -655,9 +678,7 @@ void pagefault_out_of_memory(void)
655 /* Got some memory back in the last second. */ 678 /* Got some memory back in the last second. */
656 return; 679 return;
657 680
658 if (sysctl_panic_on_oom) 681 check_panic_on_oom(CONSTRAINT_NONE, 0, 0);
659 panic("out of memory from page fault. panic_on_oom is selected.\n");
660
661 read_lock(&tasklist_lock); 682 read_lock(&tasklist_lock);
662 /* unknown gfp_mask and order */ 683 /* unknown gfp_mask and order */
663 __out_of_memory(0, 0, CONSTRAINT_NONE, NULL); 684 __out_of_memory(0, 0, CONSTRAINT_NONE, NULL);
@@ -704,29 +725,13 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask,
704 return; 725 return;
705 } 726 }
706 727
707 if (sysctl_panic_on_oom == 2) {
708 dump_header(NULL, gfp_mask, order, NULL);
709 panic("out of memory. Compulsory panic_on_oom is selected.\n");
710 }
711
712 /* 728 /*
713 * Check if there were limitations on the allocation (only relevant for 729 * Check if there were limitations on the allocation (only relevant for
714 * NUMA) that may require different handling. 730 * NUMA) that may require different handling.
715 */ 731 */
716 constraint = constrained_alloc(zonelist, gfp_mask, nodemask); 732 constraint = constrained_alloc(zonelist, gfp_mask, nodemask);
733 check_panic_on_oom(constraint, gfp_mask, order);
717 read_lock(&tasklist_lock); 734 read_lock(&tasklist_lock);
718 if (unlikely(sysctl_panic_on_oom)) {
719 /*
720 * panic_on_oom only affects CONSTRAINT_NONE, the kernel
721 * should not panic for cpuset or mempolicy induced memory
722 * failures.
723 */
724 if (constraint == CONSTRAINT_NONE) {
725 dump_header(NULL, gfp_mask, order, NULL);
726 read_unlock(&tasklist_lock);
727 panic("Out of memory: panic_on_oom is enabled\n");
728 }
729 }
730 __out_of_memory(gfp_mask, order, constraint, nodemask); 735 __out_of_memory(gfp_mask, order, constraint, nodemask);
731 read_unlock(&tasklist_lock); 736 read_unlock(&tasklist_lock);
732 737