Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Baoquan He <baoquan.he@linux.dev>
To: Christoph Hellwig <hch@lst.de>
Cc: akpm@linux-foundation.org, chrisl@kernel.org,
	usama.arif@linux.dev, kasong@tencent.com, nphamcs@gmail.com,
	shikemeng@huaweicloud.com, youngjun.park@lge.com,
	linux-mm@kvack.org
Subject: Re: [PATCH 5/8] mm/swap: remove count_swpout_vm_event
Date: Thu, 4 Jun 2026 19:37:52 +0800	[thread overview]
Message-ID: <aiFjkBXIs3-6gWZI@MiWiFi-R3L-srv> (raw)
In-Reply-To: <20260601113449.3464734-6-hch@lst.de>

On 06/01/26 at 01:34pm, Christoph Hellwig wrote:
> There is only one caller left, so merge it into that.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  mm/page_io.c | 24 ++++++++++--------------
>  1 file changed, 10 insertions(+), 14 deletions(-)

Reviewed-by: Baoquan He <baoquan.he@linux.dev>

> 
> diff --git a/mm/page_io.c b/mm/page_io.c
> index 22c751fe03c0..0e2aabe635c8 100644
> --- a/mm/page_io.c
> +++ b/mm/page_io.c
> @@ -254,19 +254,6 @@ int swap_writeout(struct swap_io_ctx *ctx, struct folio *folio)
>  	return ret;
>  }
>  
> -static inline void count_swpout_vm_event(struct folio *folio)
> -{
> -#ifdef CONFIG_TRANSPARENT_HUGEPAGE
> -	if (unlikely(folio_test_pmd_mappable(folio))) {
> -		count_memcg_folio_events(folio, THP_SWPOUT, 1);
> -		count_vm_event(THP_SWPOUT);
> -	}
> -#endif
> -	count_mthp_stat(folio_order(folio), MTHP_STAT_SWPOUT);
> -	count_memcg_folio_events(folio, PSWPOUT, folio_nr_pages(folio));
> -	count_vm_events(PSWPOUT, folio_nr_pages(folio));
> -}
> -
>  #if defined(CONFIG_MEMCG) && defined(CONFIG_BLK_CGROUP)
>  static struct cgroup_subsys_state *folio_memcg_blkg_css(struct folio *folio)
>  {
> @@ -388,7 +375,16 @@ void __swap_writepage(struct swap_io_ctx *ctx, struct folio *folio)
>  {
>  	VM_BUG_ON_FOLIO(!folio_test_swapcache(folio), folio);
>  
> -	count_swpout_vm_event(folio);
> +#ifdef CONFIG_TRANSPARENT_HUGEPAGE
> +	if (unlikely(folio_test_pmd_mappable(folio))) {
> +		count_memcg_folio_events(folio, THP_SWPOUT, 1);
> +		count_vm_event(THP_SWPOUT);
> +	}
> +#endif
> +	count_mthp_stat(folio_order(folio), MTHP_STAT_SWPOUT);
> +	count_memcg_folio_events(folio, PSWPOUT, folio_nr_pages(folio));
> +	count_vm_events(PSWPOUT, folio_nr_pages(folio));
> +
>  	folio_start_writeback(folio);
>  	folio_unlock(folio);
>  	swap_add_page(ctx, folio, WRITE);
> -- 
> 2.53.0
> 


  reply	other threads:[~2026-06-04 11:38 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-01 11:34 better block swap batching and a different take on swap_ops v2 Christoph Hellwig
2026-06-01 11:34 ` [PATCH 1/8] shmem: provide a shmem_write_folio wrapper Christoph Hellwig
2026-06-04  9:43   ` Baoquan He
2026-06-01 11:34 ` [PATCH 2/8] mm: merge writeout into pageout Christoph Hellwig
2026-06-04  9:44   ` Baoquan He
2026-06-01 11:34 ` [PATCH 3/8] mm/swap: introduce struct swap_io_ctx Christoph Hellwig
2026-06-04 10:58   ` Baoquan He
2026-06-01 11:34 ` [PATCH 4/8] mm/swap: also use struct swap_iocb for block I/O Christoph Hellwig
2026-06-04 10:59   ` Baoquan He
2026-06-04 11:37   ` Baoquan He
2026-06-01 11:34 ` [PATCH 5/8] mm/swap: remove count_swpout_vm_event Christoph Hellwig
2026-06-04 11:37   ` Baoquan He [this message]
2026-06-01 11:34 ` [PATCH 6/8] mm/swap: use swap_ops to register swap device's methods Christoph Hellwig
2026-06-01 11:34 ` [PATCH 7/8] mm/swap: remove SWP_FS_OPS Christoph Hellwig
2026-06-01 11:34 ` [PATCH 8/8] mm/vmstat: add NRSWP{IN,OUT} counters Christoph Hellwig
2026-06-01 13:29 ` better block swap batching and a different take on swap_ops v2 Baoquan He
2026-06-01 14:50   ` Christoph Hellwig
2026-06-01 15:17     ` Baoquan He
2026-06-01 15:25       ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aiFjkBXIs3-6gWZI@MiWiFi-R3L-srv \
    --to=baoquan.he@linux.dev \
    --cc=akpm@linux-foundation.org \
    --cc=chrisl@kernel.org \
    --cc=hch@lst.de \
    --cc=kasong@tencent.com \
    --cc=linux-mm@kvack.org \
    --cc=nphamcs@gmail.com \
    --cc=shikemeng@huaweicloud.com \
    --cc=usama.arif@linux.dev \
    --cc=youngjun.park@lge.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox