linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] vmscan,migrate: fix double-decrement on node stats when demoting pages
@ 2024-10-25 14:17 Gregory Price
  2024-10-28  4:39 ` Huang, Ying
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Gregory Price @ 2024-10-25 14:17 UTC (permalink / raw)
  To: linux-kernel, linux-mm
  Cc: kernel-team, akpm, ying.huang, weixugc, dave.hansen, osalvador,
	shy828301, stable

When numa balancing is enabled with demotion, vmscan will call
migrate_pages when shrinking LRUs.  Successful demotions will
cause node vmstat numbers to double-decrement, leading to an
imbalanced page count.  The result is dmesg output like such:

$ cat /proc/sys/vm/stat_refresh

[77383.088417] vmstat_refresh: nr_isolated_anon -103212
[77383.088417] vmstat_refresh: nr_isolated_file -899642

This negative value may impact compaction and reclaim throttling.

The double-decrement occurs in the migrate_pages path:

caller to shrink_folio_list decrements the count
  shrink_folio_list
    demote_folio_list
      migrate_pages
        migrate_pages_batch
          migrate_folio_move
            migrate_folio_done
              mod_node_page_state(-ve) <- second decrement

This path happens for SUCCESSFUL migrations, not failures. Typically
callers to migrate_pages are required to handle putback/accounting for
failures, but this is already handled in the shrink code.

When accounting for migrations, instead do not decrement the count
when the migration reason is MR_DEMOTION. As of v6.11, this demotion
logic is the only source of MR_DEMOTION.

Signed-off-by: Gregory Price <gourry@gourry.net>
Fixes: 26aa2d199d6f2 ("mm/migrate: demote pages during reclaim")
Cc: stable@vger.kernel.org
---
 mm/migrate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/migrate.c b/mm/migrate.c
index 923ea80ba744..e3aac274cf16 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -1099,7 +1099,7 @@ static void migrate_folio_done(struct folio *src,
 	 * not accounted to NR_ISOLATED_*. They can be recognized
 	 * as __folio_test_movable
 	 */
-	if (likely(!__folio_test_movable(src)))
+	if (likely(!__folio_test_movable(src)) && reason != MR_DEMOTION)
 		mod_node_page_state(folio_pgdat(src), NR_ISOLATED_ANON +
 				    folio_is_file_lru(src), -folio_nr_pages(src));
 
-- 
2.43.0



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2024-10-29 13:14 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-25 14:17 [PATCH] vmscan,migrate: fix double-decrement on node stats when demoting pages Gregory Price
2024-10-28  4:39 ` Huang, Ying
2024-10-28  5:24 ` Shakeel Butt
2024-10-28 14:39   ` Gregory Price
2024-10-29  0:16     ` Huang, Ying
2024-10-28 16:05 ` Davidlohr Bueso
2024-10-28 20:45 ` Yang Shi
2024-10-28 21:25   ` Gregory Price
2024-10-29  0:34     ` Huang, Ying
2024-10-29 13:14       ` Gregory Price
2024-10-29  8:40 ` Oscar Salvador

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox