All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] memcg: oom: ignore oom warnings from memory.max
@ 2020-04-30 18:27 Shakeel Butt
  2020-04-30 19:06   ` Roman Gushchin
                   ` (3 more replies)
  0 siblings, 4 replies; 61+ messages in thread
From: Shakeel Butt @ 2020-04-30 18:27 UTC (permalink / raw)
  To: Johannes Weiner, Roman Gushchin, Michal Hocko
  Cc: Greg Thelen, Andrew Morton, linux-mm, cgroups, linux-kernel,
	Shakeel Butt

Lowering memory.max can trigger an oom-kill if the reclaim does not
succeed. However if oom-killer does not find a process for killing, it
dumps a lot of warnings.

Deleting a memcg does not reclaim memory from it and the memory can
linger till there is a memory pressure. One normal way to proactively
reclaim such memory is to set memory.max to 0 just before deleting the
memcg. However if some of the memcg's memory is pinned by others, this
operation can trigger an oom-kill without any process and thus can log a
lot un-needed warnings. So, ignore all such warnings from memory.max.

Signed-off-by: Shakeel Butt <shakeelb@google.com>
---
 include/linux/oom.h | 3 +++
 mm/memcontrol.c     | 9 +++++----
 mm/oom_kill.c       | 2 +-
 3 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/include/linux/oom.h b/include/linux/oom.h
index c696c265f019..6345dc55df64 100644
--- a/include/linux/oom.h
+++ b/include/linux/oom.h
@@ -52,6 +52,9 @@ struct oom_control {
 
 	/* Used to print the constraint info. */
 	enum oom_constraint constraint;
+
+	/* Do not warn even if there is no process to be killed. */
+	bool no_warn;
 };
 
 extern struct mutex oom_lock;
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 317dbbaac603..a1f00d9b9bb0 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -1571,7 +1571,7 @@ unsigned long mem_cgroup_size(struct mem_cgroup *memcg)
 }
 
 static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
-				     int order)
+				     int order, bool no_warn)
 {
 	struct oom_control oc = {
 		.zonelist = NULL,
@@ -1579,6 +1579,7 @@ static bool mem_cgroup_out_of_memory(struct mem_cgroup *memcg, gfp_t gfp_mask,
 		.memcg = memcg,
 		.gfp_mask = gfp_mask,
 		.order = order,
+		.no_warn = no_warn,
 	};
 	bool ret;
 
@@ -1821,7 +1822,7 @@ static enum oom_status mem_cgroup_oom(struct mem_cgroup *memcg, gfp_t mask, int
 		mem_cgroup_oom_notify(memcg);
 
 	mem_cgroup_unmark_under_oom(memcg);
-	if (mem_cgroup_out_of_memory(memcg, mask, order))
+	if (mem_cgroup_out_of_memory(memcg, mask, order, false))
 		ret = OOM_SUCCESS;
 	else
 		ret = OOM_FAILED;
@@ -1880,7 +1881,7 @@ bool mem_cgroup_oom_synchronize(bool handle)
 		mem_cgroup_unmark_under_oom(memcg);
 		finish_wait(&memcg_oom_waitq, &owait.wait);
 		mem_cgroup_out_of_memory(memcg, current->memcg_oom_gfp_mask,
-					 current->memcg_oom_order);
+					 current->memcg_oom_order, false);
 	} else {
 		schedule();
 		mem_cgroup_unmark_under_oom(memcg);
@@ -6106,7 +6107,7 @@ static ssize_t memory_max_write(struct kernfs_open_file *of,
 		}
 
 		memcg_memory_event(memcg, MEMCG_OOM);
-		if (!mem_cgroup_out_of_memory(memcg, GFP_KERNEL, 0))
+		if (!mem_cgroup_out_of_memory(memcg, GFP_KERNEL, 0, true))
 			break;
 	}
 
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 463b3d74a64a..5ace39f6fe1e 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -1098,7 +1098,7 @@ bool out_of_memory(struct oom_control *oc)
 
 	select_bad_process(oc);
 	/* Found nothing?!?! */
-	if (!oc->chosen) {
+	if (!oc->chosen && !oc->no_warn) {
 		dump_header(oc, NULL);
 		pr_warn("Out of memory and no killable processes...\n");
 		/*
-- 
2.26.2.526.g744177e7f7-goog


^ permalink raw reply related	[flat|nested] 61+ messages in thread

end of thread, other threads:[~2020-05-05 16:57 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-30 18:27 [PATCH] memcg: oom: ignore oom warnings from memory.max Shakeel Butt
2020-04-30 19:06 ` Roman Gushchin
2020-04-30 19:06   ` Roman Gushchin
     [not found]   ` <20200430190610.GD339283-cx5fftMpWqeCjSd+JxjunQ2O0Ztt9esIQQ4Iyu8u01E@public.gmane.org>
2020-04-30 19:30     ` Johannes Weiner
2020-04-30 19:30       ` Johannes Weiner
     [not found]       ` <20200430193049.GB2436-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2020-04-30 20:23         ` Roman Gushchin
2020-04-30 20:23           ` Roman Gushchin
2020-04-30 19:31     ` Shakeel Butt
2020-04-30 19:31       ` Shakeel Butt
2020-04-30 19:29 ` Johannes Weiner
     [not found]   ` <20200430192907.GA2436-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2020-04-30 20:20     ` Shakeel Butt
2020-04-30 20:20       ` Shakeel Butt
     [not found]       ` <CALvZod6Gatw+sX7_hsVPB-O2yMt-ygXUSweQbHwxZHgwdEth4Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-04  6:57         ` Michal Hocko
2020-05-04  6:57           ` Michal Hocko
     [not found]           ` <20200504065701.GB22838-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2020-05-04 13:54             ` Shakeel Butt
2020-05-04 13:54               ` Shakeel Butt
2020-05-01  1:39 ` Yafang Shao
2020-05-01  2:04   ` Shakeel Butt
     [not found]     ` <CALvZod4gZ_Q=Kuh-Fx-EsKzxmtPKy5xu+gpPpjV6MYW4Ku=JbA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-01  2:12       ` Yafang Shao
2020-05-01  2:12         ` Yafang Shao
     [not found]   ` <CALOAHbC4WY00yQ46b8CFqVQ3S=JSJxE2HR00TtMqXOWLRPRZ8w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-04  7:03     ` Michal Hocko
2020-05-04  7:03       ` Michal Hocko
     [not found]       ` <20200504070301.GC22838-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2020-05-04  7:26         ` Yafang Shao
2020-05-04  7:26           ` Yafang Shao
2020-05-04  7:35           ` Michal Hocko
     [not found]             ` <20200504073549.GE22838-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2020-05-04  7:40               ` Yafang Shao
2020-05-04  7:40                 ` Yafang Shao
     [not found]                 ` <CALOAHbDd8hjURSi9jAdjQTbSLDvu9vkOkjS1hZNn04G8Yj7WdQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-04  8:03                   ` Michal Hocko
2020-05-04  8:03                     ` Michal Hocko
     [not found] ` <20200430182712.237526-1-shakeelb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2020-05-04  6:56   ` Michal Hocko
2020-05-04  6:56     ` Michal Hocko
2020-05-04 13:54     ` Shakeel Butt
2020-05-04 14:11       ` Michal Hocko
     [not found]         ` <20200504141136.GR22838-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2020-05-04 14:53           ` Shakeel Butt
2020-05-04 14:53             ` Shakeel Butt
2020-05-04 15:00             ` Michal Hocko
     [not found]               ` <20200504150052.GT22838-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2020-05-04 15:35                 ` Shakeel Butt
2020-05-04 15:35                   ` Shakeel Butt
     [not found]                   ` <CALvZod7EeQm-T4dsBddfMY_szYw3m8gRh5R5GfjQiuQAtCocug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-04 15:39                     ` Yafang Shao
2020-05-04 15:39                       ` Yafang Shao
2020-05-04 16:06                     ` Michal Hocko
2020-05-04 16:06                       ` Michal Hocko
2020-05-04 19:23                       ` Shakeel Butt
     [not found]                         ` <CALvZod79hWns9366B+8ZK2Roz8c+vkdA80HqFNMep56_pumdRQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-05  7:13                           ` Michal Hocko
2020-05-05  7:13                             ` Michal Hocko
2020-05-05 15:03                             ` Shakeel Butt
     [not found]                               ` <CALvZod5H-fDbvu73=hkzN0Man_+03ZW0d5zc1N0YObVHSiy0Tw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-05 16:57                                 ` Johannes Weiner
2020-05-05 16:57                                   ` Johannes Weiner
2020-05-05 15:27                           ` Johannes Weiner
2020-05-05 15:27                             ` Johannes Weiner
     [not found]                             ` <20200505152712.GB58018-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2020-05-05 15:35                               ` Shakeel Butt
2020-05-05 15:35                                 ` Shakeel Butt
     [not found]                                 ` <CALvZod48mu1w=fjpD=GXqCMdNq_8rExQ177_EP+Lx+TvR6fw+w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-05 15:49                                   ` Michal Hocko
2020-05-05 15:49                                     ` Michal Hocko
2020-05-05 16:40                                   ` Johannes Weiner
2020-05-05 16:40                                     ` Johannes Weiner
     [not found]       ` <CALvZod5Ao2PEFPEOckW6URBfxisp9nNpNeon1GuctuHehqk_6Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-04 14:20         ` Tetsuo Handa
2020-05-04 14:20           ` Tetsuo Handa
2020-05-04 14:57           ` Shakeel Butt
     [not found]             ` <CALvZod5T9pYG1xVHqNM=c68jgKPVXtKjuvV0DSAR+Ld_Mm1c4A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2020-05-04 15:44               ` Tetsuo Handa
2020-05-04 15:44                 ` Tetsuo Handa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.