Re: [PATCH v2] mm/page_alloc: Avoid duplicate NR_FREE_PAGES updates in move_to_free_list()

From: Joshua Hahn

Date: Mon Jan 12 2026 - 09:53:23 EST


On Mon, 12 Jan 2026 20:16:14 +0800 Yajun Deng <yajun.deng@xxxxxxxxx> wrote:

> In move_to_free_list(), when a page block changes its migration type,
> we need to update free page counts for both the old and new types.
> Originally, this was done by two calls to account_freepages(), which
> updates NR_FREE_PAGES and also type-specific counters. However, this
> causes NR_FREE_PAGES to be updated twice, while the net change is zero
> in most cases.
>
> This patch adds a condition that updates the NR_FREE_PAGES only if one of
> the two types is the isolate type. This avoids NR_FREE_PAGES being
> updates twice.
>
> The optimization avoid duplicate NR_FREE_PAGES updates in
> move_to_free_list().
>
> Signed-off-by: Yajun Deng <yajun.deng@xxxxxxxxx>
> Suggested-by: Joshua Hahn <joshua.hahnjy@xxxxxxxxx>

Hello Yajun,

LGTM. Thank you for kindly accepting my suggestion!
Reviewed-by: Joshua Hahn <joshua.hahnjy@xxxxxxxxx>