commit | e91a810e884850781a1cada2ea81b8016881d244 | [log] [tgz] |
---|---|---|
author | Al Viro <viro@ftp.linux.org.uk> | Sat Oct 20 21:45:33 2007 +0100 |
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | Sat Oct 20 15:04:06 2007 -0700 |
tree | ed23efe49c12aeb8e336795bee11dde3e4ebb2ec | |
parent | e8b8c977734193adedf2b0f607d6252c78e86394 [diff] |
oom_kill bug Wrong order of arguments Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 824cade..91a081a 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c
@@ -496,7 +496,7 @@ 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;