Skip to content

Commit

Permalink
memcg, oom: notify on oom killer invocation from the charge path
Browse files Browse the repository at this point in the history
Burt Holzman has noticed that memcg v1 doesn't notify about OOM events via
eventfd anymore.  The reason is that 29ef680 ("memcg, oom: move
out_of_memory back to the charge path") has moved the oom handling back to
the charge path.  While doing so the notification was left behind in
mem_cgroup_oom_synchronize.

Fix the issue by replicating the oom hierarchy locking and the
notification.

Link: http://lkml.kernel.org/r/[email protected]
Fixes: 29ef680 ("memcg, oom: move out_of_memory back to the charge path")
Signed-off-by: Michal Hocko <[email protected]>
Reported-by: Burt Holzman <[email protected]>
Acked-by: Johannes Weiner <[email protected]>
Cc: Vladimir Davydov <[email protected]
Cc: <[email protected]>	[4.19+]
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Michal Hocko authored and torvalds committed Dec 28, 2018
1 parent 7af7a8e commit 7056d3a
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions mm/memcontrol.c
Original file line number Diff line number Diff line change
Expand Up @@ -1673,6 +1673,9 @@ enum oom_status {

static enum oom_status mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int order)
{
enum oom_status ret;
bool locked;

if (order > PAGE_ALLOC_COSTLY_ORDER)
return OOM_SKIPPED;

Expand Down Expand Up @@ -1707,10 +1710,23 @@ static enum oom_status mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int
return OOM_ASYNC;
}

mem_cgroup_mark_under_oom(memcg);

locked = mem_cgroup_oom_trylock(memcg);

if (locked)
mem_cgroup_oom_notify(memcg);

mem_cgroup_unmark_under_oom(memcg);
if (mem_cgroup_out_of_memory(memcg, mask, order))
return OOM_SUCCESS;
ret = OOM_SUCCESS;
else
ret = OOM_FAILED;

return OOM_FAILED;
if (locked)
mem_cgroup_oom_unlock(memcg);

return ret;
}

/**
Expand Down

0 comments on commit 7056d3a

Please sign in to comment.