diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-20 16:45:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-20 18:04:06 -0400 |
commit | e91a810e884850781a1cada2ea81b8016881d244 (patch) | |
tree | ed23efe49c12aeb8e336795bee11dde3e4ebb2ec /mm | |
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>
Diffstat (limited to 'mm')
-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 824cade07827..91a081a82f55 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c | |||
@@ -496,7 +496,7 @@ retry: | |||
496 | panic("Out of memory and no killable processes...\n"); | 496 | panic("Out of memory and no killable processes...\n"); |
497 | } | 497 | } |
498 | 498 | ||
499 | if (oom_kill_process(p, points, gfp_mask, order, | 499 | if (oom_kill_process(p, gfp_mask, order, points, |
500 | "Out of memory")) | 500 | "Out of memory")) |
501 | goto retry; | 501 | goto retry; |
502 | 502 | ||