linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Vlastimil Babka <vbabka@suse.cz>
To: Qi Zheng <qi.zheng@linux.dev>,
	akpm@linux-foundation.org, david@kernel.org,
	lorenzo.stoakes@oracle.com, Liam.Howlett@oracle.com,
	rppt@kernel.org, surenb@google.com, mhocko@suse.com,
	harry.yoo@oracle.com
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Qi Zheng <zhengqi.arch@bytedance.com>
Subject: Re: [PATCH] mm: vmstat: correct the comment above preempt_disable_nested()
Date: Mon, 10 Nov 2025 09:53:37 +0100	[thread overview]
Message-ID: <cff1f137-06dd-4045-942a-b5e56a63f47d@suse.cz> (raw)
In-Reply-To: <20251110084437.46701-1-qi.zheng@linux.dev>

On 11/10/25 09:44, Qi Zheng wrote:
> From: Qi Zheng <zhengqi.arch@bytedance.com>
> 
> The comment explaining why these parts use preempt_disable_nested() is in
> __mod_zone_page_state(), not in __mod_node_page_state(), so we should see
> __mod_zone_page_state(). Just correct it.
> 
> Signed-off-by: Qi Zheng <zhengqi.arch@bytedance.com>

Acked-by: Vlastimil Babka <vbabka@suse.cz>

> ---
>  mm/vmstat.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/mm/vmstat.c b/mm/vmstat.c
> index b53b07aa29e81..65de88cdf40e6 100644
> --- a/mm/vmstat.c
> +++ b/mm/vmstat.c
> @@ -392,7 +392,7 @@ void __mod_node_page_state(struct pglist_data *pgdat, enum node_stat_item item,
>  		delta >>= PAGE_SHIFT;
>  	}
>  
> -	/* See __mod_node_page_state */
> +	/* See __mod_zone_page_state() */
>  	preempt_disable_nested();
>  
>  	x = delta + __this_cpu_read(*p);
> @@ -438,7 +438,7 @@ void __inc_zone_state(struct zone *zone, enum zone_stat_item item)
>  	s8 __percpu *p = pcp->vm_stat_diff + item;
>  	s8 v, t;
>  
> -	/* See __mod_node_page_state */
> +	/* See __mod_zone_page_state() */
>  	preempt_disable_nested();
>  
>  	v = __this_cpu_inc_return(*p);
> @@ -461,7 +461,7 @@ void __inc_node_state(struct pglist_data *pgdat, enum node_stat_item item)
>  
>  	VM_WARN_ON_ONCE(vmstat_item_in_bytes(item));
>  
> -	/* See __mod_node_page_state */
> +	/* See __mod_zone_page_state() */
>  	preempt_disable_nested();
>  
>  	v = __this_cpu_inc_return(*p);
> @@ -494,7 +494,7 @@ void __dec_zone_state(struct zone *zone, enum zone_stat_item item)
>  	s8 __percpu *p = pcp->vm_stat_diff + item;
>  	s8 v, t;
>  
> -	/* See __mod_node_page_state */
> +	/* See __mod_zone_page_state() */
>  	preempt_disable_nested();
>  
>  	v = __this_cpu_dec_return(*p);
> @@ -517,7 +517,7 @@ void __dec_node_state(struct pglist_data *pgdat, enum node_stat_item item)
>  
>  	VM_WARN_ON_ONCE(vmstat_item_in_bytes(item));
>  
> -	/* See __mod_node_page_state */
> +	/* See __mod_zone_page_state() */
>  	preempt_disable_nested();
>  
>  	v = __this_cpu_dec_return(*p);



  reply	other threads:[~2025-11-10  8:53 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-10  8:44 [PATCH] mm: vmstat: correct the comment above preempt_disable_nested() Qi Zheng
2025-11-10  8:53 ` Vlastimil Babka [this message]
2025-11-10  8:56 ` Harry Yoo

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=cff1f137-06dd-4045-942a-b5e56a63f47d@suse.cz \
    --to=vbabka@suse.cz \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=david@kernel.org \
    --cc=harry.yoo@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=lorenzo.stoakes@oracle.com \
    --cc=mhocko@suse.com \
    --cc=qi.zheng@linux.dev \
    --cc=rppt@kernel.org \
    --cc=surenb@google.com \
    --cc=zhengqi.arch@bytedance.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;
as well as URLs for NNTP newsgroup(s).