]> www.infradead.org Git - users/hch/misc.git/commit
memcg: move do_memsw_account() to CONFIG_MEMCG_V1
authorShakeel Butt <shakeel.butt@linux.dev>
Wed, 12 Mar 2025 22:25:52 +0000 (15:25 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Sat, 22 Mar 2025 05:03:11 +0000 (22:03 -0700)
commitcb44821e1f524a5b8c05a738a40d572efd1ca430
treedbe5c7744b0965f3e10557b6a5dc2b4f0779c656
parent20d6c17252282c3af261d1cde8e34def1b2458c8
memcg: move do_memsw_account() to CONFIG_MEMCG_V1

The do_memsw_account() is used to enable or disable legacy memory+swap
accounting in memory cgroup.  However with disabled CONFIG_MEMCG_V1, we
don't need to keep checking it.  So, let's always return false for
!CONFIG_MEMCG_V1 configs.

Before the patch:

$ size mm/memcontrol.o
   text    data     bss     dec     hex filename
  49928   10736    4172   64836    fd44 mm/memcontrol.o

After the patch:

$ size mm/memcontrol.o
   text    data     bss     dec     hex filename
  49430   10480    4172   64082    fa52 mm/memcontrol.o

Link: https://lkml.kernel.org/r/20250312222552.3284173-1-shakeel.butt@linux.dev
Signed-off-by: Shakeel Butt <shakeel.butt@linux.dev>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Muchun Song <muchun.song@linux.dev>
Cc: Roman Gushchin <roman.gushchin@linux.dev>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memcontrol-v1.h