projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
753ec50
)
mm: compaction: count the migration scanned pages events for proactive compaction
author
Baolin Wang
<baolin.wang@linux.alibaba.com>
Tue, 10 Jan 2023 13:36:20 +0000
(21:36 +0800)
committer
Andrew Morton
<akpm@linux-foundation.org>
Fri, 3 Feb 2023 06:32:53 +0000
(22:32 -0800)
The proactive compaction will reuse per-node kcompactd threads, so we
should also count the KCOMPACTD_MIGRATE_SCANNED and KCOMPACTD_FREE_SCANNED
events for proactive compaction.
Link:
https://lkml.kernel.org/r/b7f1ece1adc17defa47e3667b5f9fd61f496517a.1673342761.git.baolin.wang@linux.alibaba.com
Signed-off-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Cc: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/compaction.c
patch
|
blob
|
history
diff --git
a/mm/compaction.c
b/mm/compaction.c
index f8e8addc8664d8ca73848f71dbd12fa9a2d446be..62f6bb68c9cb3ec234d897d2f1b2b965f1f919d2 100644
(file)
--- a/
mm/compaction.c
+++ b/
mm/compaction.c
@@
-2659,6
+2659,11
@@
static void proactive_compact_node(pg_data_t *pgdat)
cc.zone = zone;
compact_zone(&cc, NULL);
+
+ count_compact_events(KCOMPACTD_MIGRATE_SCANNED,
+ cc.total_migrate_scanned);
+ count_compact_events(KCOMPACTD_FREE_SCANNED,
+ cc.total_free_scanned);
}
}