diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-20 21:45:33 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-20 15:04:06 -0700 |
commit | e91a810e884850781a1cada2ea81b8016881d244 (patch) | |
tree | ed23efe49c12aeb8e336795bee11dde3e4ebb2ec /mm/oom_kill.c | |
parent | e8b8c977734193adedf2b0f607d6252c78e86394 (diff) | |
download | op-kernel-dev-e91a810e884850781a1cada2ea81b8016881d244.zip op-kernel-dev-e91a810e884850781a1cada2ea81b8016881d244.tar.gz |
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>
Diffstat (limited to 'mm/oom_kill.c')
-rw-r--r-- | mm/oom_kill.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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; |