public inbox for cgroups@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] mm: Make mem_cgroup_id_get_many() __maybe_unused
@ 2020-03-05 16:43 Vincenzo Frascino
  2020-03-05 17:22 ` Johannes Weiner
       [not found] ` <20200305164354.48147-1-vincenzo.frascino-5wv7dgnIgG8@public.gmane.org>
  0 siblings, 2 replies; 3+ messages in thread
From: Vincenzo Frascino @ 2020-03-05 16:43 UTC (permalink / raw)
  To: cgroups-u79uwXL29TY76Z2rM5mHXA, linux-mm-Bw31MaZKKs3YtjvyW6yDsg,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA
  Cc: Vincenzo Frascino, Johannes Weiner, Michal Hocko,
	Vladimir Davydov, Andrew Morton

mem_cgroup_id_get_many() is currently used only when MMU or MEMCG_SWAP
configuration options are enabled. Having them disabled triggers the
following warning at compile time:

linux/mm/memcontrol.c:4797:13: warning: ‘mem_cgroup_id_get_many’ defined
but not used [-Wunused-function]
 static void mem_cgroup_id_get_many(struct mem_cgroup *memcg, unsigned
 int n)

Make mem_cgroup_id_get_many() __maybe_unused to address the issue.

Cc: Johannes Weiner <hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
Cc: Michal Hocko <mhocko-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Vladimir Davydov <vdavydov.dev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Andrew Morton <akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
Signed-off-by: Vincenzo Frascino <vincenzo.frascino-5wv7dgnIgG8@public.gmane.org>
---
 mm/memcontrol.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index d09776cd6e10..2b9533ed52f5 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -4794,7 +4794,8 @@ static void mem_cgroup_id_remove(struct mem_cgroup *memcg)
 	}
 }
 
-static void mem_cgroup_id_get_many(struct mem_cgroup *memcg, unsigned int n)
+static void __maybe_unused mem_cgroup_id_get_many(struct mem_cgroup *memcg,
+						  unsigned int n)
 {
 	refcount_add(n, &memcg->id.ref);
 }
-- 
2.25.1


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

end of thread, other threads:[~2020-03-05 18:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-05 16:43 [PATCH v2] mm: Make mem_cgroup_id_get_many() __maybe_unused Vincenzo Frascino
2020-03-05 17:22 ` Johannes Weiner
     [not found] ` <20200305164354.48147-1-vincenzo.frascino-5wv7dgnIgG8@public.gmane.org>
2020-03-05 18:36   ` Chris Down

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