Re: [PATCH -next v2 2/2] memcg: remove mem_cgroup_size()

From: Michal Hocko
Date: Wed Dec 10 2025 - 03:37:22 EST


On Wed 10-12-25 16:31:37, Chen Ridong wrote:
>
>
> On 2025/12/10 16:05, Michal Hocko wrote:
[...]
> >> diff --git a/mm/vmscan.c b/mm/vmscan.c
> >> index 670fe9fae5ba..fe48d0376e7c 100644
> >> --- a/mm/vmscan.c
> >> +++ b/mm/vmscan.c
> >> @@ -2451,6 +2451,7 @@ static inline void calculate_pressure_balance(struct scan_control *sc,
> >> static unsigned long apply_proportional_protection(struct mem_cgroup *memcg,
> >> struct scan_control *sc, unsigned long scan)
> >> {
> >> +#ifdef CONFIG_MEMCG
> >> unsigned long min, low;
> >>
> >> mem_cgroup_protection(sc->target_mem_cgroup, memcg, &min, &low);
> > [...]
> >> @@ -2508,6 +2509,7 @@ static unsigned long apply_proportional_protection(struct mem_cgroup *memcg,
> >> */
> >> scan = max(scan, SWAP_CLUSTER_MAX);
> >> }
> >> +#endif
> >> return scan;
> >> }
> >
> > This returns a random garbage for !CONFIG_MEMCG, doesn't it?
> >
>
> This returns what was passed as input. This means the scan behavior remains unchanged when memcg is
> disabled. When memcg is enabled, the scan amount may be proportionally scaled.

Right you are. My bad. Sorry for the confusion.
--
Michal Hocko
SUSE Labs