]> Git Repo - linux.git/commit
memcg: fix mem_cgroup_out_of_memory() return value.
authorTetsuo Handa <[email protected]>
Thu, 26 May 2016 22:16:19 +0000 (15:16 -0700)
committerLinus Torvalds <[email protected]>
Thu, 26 May 2016 22:35:44 +0000 (15:35 -0700)
commit1ebab2db065e99eed9ab2304d3b7ad25c9568612
treee235330fb357cb820a85fa6e3fcdb8c9666e3c2c
parent1f3a437fa027c75b26a64e2e71d7c374ff70f866
memcg: fix mem_cgroup_out_of_memory() return value.

mem_cgroup_out_of_memory() is returning "true" if it finds a TIF_MEMDIE
task after an eligible task was found, "false" if it found a TIF_MEMDIE
task before an eligible task is found.

This difference confuses memory_max_write() which checks the return
value of mem_cgroup_out_of_memory().  Since memory_max_write() wants to
continue looping, mem_cgroup_out_of_memory() should return "true" in
this case.

This patch sets a dummy pointer in order to return "true".

Link: http://lkml.kernel.org/r/1463753327-5170-1-git-send-email-penguin-kernel@I-love.SAKURA.ne.jp
Signed-off-by: Tetsuo Handa <[email protected]>
Acked-by: Michal Hocko <[email protected]>
Acked-by: Vladimir Davydov <[email protected]>
Cc: Johannes Weiner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
mm/memcontrol.c
This page took 0.052587 seconds and 4 git commands to generate.