[PATCH v3 2/2] mm: ignore memory.min of abandoned memory cgroups

From: Roman Gushchin
Date: Thu May 03 2018 - 07:45:21 EST


If a cgroup has no associated tasks, invoking the OOM killer
won't help release any memory, so respecting the memory.min
can lead to an infinite OOM loop or system stall.

Let's ignore memory.min of unpopulated cgroups.

Signed-off-by: Roman Gushchin <guro@xxxxxx>
Cc: Johannes Weiner <hannes@xxxxxxxxxxx>
Cc: Michal Hocko <mhocko@xxxxxxxx>
Cc: Vladimir Davydov <vdavydov.dev@xxxxxxxxx>
Cc: Tejun Heo <tj@xxxxxxxxxx>
---
include/linux/memcontrol.h | 10 ++++++++++
mm/vmscan.c | 6 +++++-
2 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
index 3b65d092614f..7d8472022aae 100644
--- a/include/linux/memcontrol.h
+++ b/include/linux/memcontrol.h
@@ -374,6 +374,11 @@ static inline void mem_cgroup_put(struct mem_cgroup *memcg)
css_put(&memcg->css);
}

+static inline bool mem_cgroup_is_populated(struct mem_cgroup *memcg)
+{
+ return cgroup_is_populated(memcg->css.cgroup);
+}
+
#define mem_cgroup_from_counter(counter, member) \
container_of(counter, struct mem_cgroup, member)

@@ -835,6 +840,11 @@ static inline void mem_cgroup_put(struct mem_cgroup *memcg)
{
}

+static inline bool mem_cgroup_is_populated(struct mem_cgroup *memcg)
+{
+ return false;
+}
+
static inline struct mem_cgroup *
mem_cgroup_iter(struct mem_cgroup *root,
struct mem_cgroup *prev,
diff --git a/mm/vmscan.c b/mm/vmscan.c
index 50055d72f294..5e2047e04770 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -2549,8 +2549,12 @@ static bool shrink_node(pg_data_t *pgdat, struct scan_control *sc)
/*
* Hard protection.
* If there is no reclaimable memory, OOM.
+ * Abandoned cgroups are losing protection,
+ * because OOM killer won't release any memory.
*/
- continue;
+ if (mem_cgroup_is_populated(memcg))
+ continue;
+ break;
case MEMCG_PROT_LOW:
/*
* Soft protection.
--
2.14.3