Commit e91a810e authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

oom_kill bug

Wrong order of arguments
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e8b8c977
......@@ -496,7 +496,7 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment