mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
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>
This commit is contained in:
parent
e8b8c97773
commit
e91a810e88
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue