Re: [PATCH v2 5/5] mm: memcg: convert enum res_type to mem_counter_type

From: Roman Gushchin
Date: Wed Jul 24 2024 - 19:54:29 EST


On Wed, Jul 24, 2024 at 04:48:47PM -0700, Shakeel Butt wrote:
> On Wed, Jul 24, 2024 at 08:21:03PM GMT, Roman Gushchin wrote:
> > The res_type enum is listing all types of memory tracked by memory
> > cgroups: generic memory, swap, kernel memory, tcp etc; and it's
> > currently used only for dealing with corresponding sysfs files.
> >
> > To prepare for tracking of various types of memory by a single
> > page_counter structure, a similar enumeration is needed. Instead
> > of introducing a completely new enumeration, let's re-purpose
> > the existing one: rename it into mem_counter_type, change items
> > names to be more meaningful and move to page_counter.h. The latter
> > is needed to have the total number of different memory types
> > available.
> >
> > This change doesn't bring any functional difference, it's a pure
> > refactoring.
> >
> > Signed-off-by: Roman Gushchin <roman.gushchin@xxxxxxxxx>
>
> Acked-by: Shakeel Butt <shakeel.butt@xxxxxxxxx>

Thank you for reviewing the series!