public inbox for cgroups@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm/memcontrol: Export memcg->watermark via sysfs for v2 memcg
@ 2022-05-05 12:13 Ganesan Rajagopal
       [not found] ` <20220505121329.GA32827-pF7uKtACKh3GmWBmRUYTj5O0Dwfk+90YVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: Ganesan Rajagopal @ 2022-05-05 12:13 UTC (permalink / raw)
  To: hannes-druUgvl0LCNAfugRpC6u6w, mhocko-DgEjT+Ai2ygdnm+yROfE0A,
	roman.gushchin-fxUVXftIFDnyG1zEObXtfA,
	shakeelb-hpIqsD4AKlfQT0dZR+AlfA
  Cc: cgroups-u79uwXL29TY76Z2rM5mHXA, linux-mm-Bw31MaZKKs3YtjvyW6yDsg,
	rganesan-nzgTgzXrdUbQT0dZR+AlfA

v1 memcg exports memcg->watermark as "memory.mem_usage_in_bytes" in
sysfs. This is missing for v2 memcg though "memory.current" is exported.
There is no other easy way of getting this information in Linux.
getrsuage() returns ru_maxrss but that's the max RSS of a single process
instead of the aggregated max RSS of all the processes. Hence, expose
memcg->watermark as "memory.watermark" for v2 memcg.

Signed-off-by: Ganesan Rajagopal <rganesan-nzgTgzXrdUbQT0dZR+AlfA@public.gmane.org>
---
 mm/memcontrol.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 725f76723220..57ed07deff3e 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -6098,6 +6098,14 @@ static u64 memory_current_read(struct cgroup_subsys_state *css,
 	return (u64)page_counter_read(&memcg->memory) * PAGE_SIZE;
 }
 
+static u64 memory_watermark_read(struct cgroup_subsys_state *css,
+				 struct cftype *cft)
+{
+	struct mem_cgroup *memcg = mem_cgroup_from_css(css);
+
+	return (u64)memcg->memory.watermark * PAGE_SIZE;
+}
+
 static int memory_min_show(struct seq_file *m, void *v)
 {
 	return seq_puts_memcg_tunable(m,
@@ -6361,6 +6369,11 @@ static struct cftype memory_files[] = {
 		.flags = CFTYPE_NOT_ON_ROOT,
 		.read_u64 = memory_current_read,
 	},
+	{
+		.name = "watermark",
+		.flags = CFTYPE_NOT_ON_ROOT,
+		.read_u64 = memory_watermark_read,
+	},
 	{
 		.name = "min",
 		.flags = CFTYPE_NOT_ON_ROOT,
-- 
2.28.0


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

end of thread, other threads:[~2022-05-06 21:04 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-05 12:13 [PATCH] mm/memcontrol: Export memcg->watermark via sysfs for v2 memcg Ganesan Rajagopal
     [not found] ` <20220505121329.GA32827-pF7uKtACKh3GmWBmRUYTj5O0Dwfk+90YVpNB7YpNyf8@public.gmane.org>
2022-05-05 16:12   ` Shakeel Butt
     [not found]     ` <CALvZod5xiSuJaDjGb+NM18puejwhnPWweSj+N=0RGQrjpjfxbw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-05-05 17:27       ` Ganesan Rajagopal
     [not found]         ` <CAPD3tpG1BeTOwTBxkXCxoJagvbn6n1aAEkt0P65g91N9gtK03w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-05-06 15:58           ` Shakeel Butt
2022-05-06 14:56   ` Johannes Weiner
     [not found]     ` <YnU3EuaWCKL5LZLy-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2022-05-06 15:04       ` Ganesan Rajagopal
2022-05-06 15:56       ` Shakeel Butt
     [not found]         ` <CALvZod6jcdhHqFEo1r-y5QufA+LxeCDy9hnD2ag_8vkvxXtp2Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-05-06 16:43           ` Ganesan Rajagopal
     [not found]             ` <CAPD3tpFx9eNUULr79xy1y7=g0zT2jMebuJMVfqyCPUZnpyx2yQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-05-06 16:45               ` Shakeel Butt
     [not found]                 ` <CALvZod4NTiqj2tfge54=oBrYggCzGVJp13RNxr2GDWdpqMCP0w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2022-05-06 16:58                   ` Ganesan Rajagopal
2022-05-06 20:49           ` Johannes Weiner
     [not found]             ` <YnWJ5QgRyc+Ualjx-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2022-05-06 21:04               ` Shakeel Butt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox