From: Al Viro Date: Sat, 20 Oct 2007 20:45:33 +0000 (+0100) Subject: oom_kill bug X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e91a810e884850781a1cada2ea81b8016881d244;p=deliverable%2Flinux.git oom_kill bug Wrong order of arguments Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 824cade07827..91a081a82f55 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -496,7 +496,7 @@ retry: panic("Out of memory and no killable processes...\n"); } - if (oom_kill_process(p, points, gfp_mask, order, + if (oom_kill_process(p, gfp_mask, order, points, "Out of memory")) goto retry;