[PATCH] mm: vmscan: consistent update to pgdeactivate and pgactivate

From: Hao Lee
Date: Thu Aug 19 2021 - 12:31:02 EST


After the commit 912c05720f00 ("mm: vmscan: consistent update to
pgrefill"), pgrefill is consistent with pgscan and pgsteal. Only under
global reclaim, are they updated at system level. Apart from that,
pgdeactivate is often used together with pgrefill to measure the
deactivation efficiency and pgactivate is used together with
pgscan to measure the reclaim efficiency. It's also necessary to
make pgdeactivate and pgactivate consistent with this rule.

Signed-off-by: Hao Lee <haolee@xxxxxxxxxxxxxx>
---
mm/vmscan.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/mm/vmscan.c b/mm/vmscan.c
index 403a175a720f..9242c01d03ac 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -1814,7 +1814,8 @@ static unsigned int shrink_page_list(struct list_head *page_list,
free_unref_page_list(&free_pages);

list_splice(&ret_pages, page_list);
- count_vm_events(PGACTIVATE, pgactivate);
+ if (!cgroup_reclaim(sc))
+ count_vm_events(PGACTIVATE, pgactivate);

return nr_reclaimed;
}
@@ -2427,7 +2428,8 @@ static void shrink_active_list(unsigned long nr_to_scan,
/* Keep all free pages in l_active list */
list_splice(&l_inactive, &l_active);

- __count_vm_events(PGDEACTIVATE, nr_deactivate);
+ if (!cgroup_reclaim(sc))
+ __count_vm_events(PGDEACTIVATE, nr_deactivate);
__count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE, nr_deactivate);

__mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
--
2.31.1