linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Chen Ridong <chenridong@huaweicloud.com>
To: Shakeel Butt <shakeel.butt@linux.dev>
Cc: "Tejun Heo" <tj@kernel.org>,
	"Johannes Weiner" <hannes@cmpxchg.org>,
	"Michal Koutný" <mkoutny@suse.com>,
	"Roman Gushchin" <roman.gushchin@linux.dev>,
	"Kuniyuki Iwashima" <kuniyu@google.com>,
	"Daniel Sedlak" <daniel.sedlak@cdn77.com>,
	"Meta kernel team" <kernel-team@meta.com>,
	linux-mm@kvack.org, netdev@vger.kernel.org,
	cgroups@vger.kernel.org, linux-kernel@vger.kernel.org,
	"Jakub Kicinski" <kuba@kernel.org>
Subject: Re: [PATCH 2/3] cgroup: add lockless fast-path checks to cgroup_file_notify()
Date: Thu, 5 Mar 2026 15:01:42 +0800	[thread overview]
Message-ID: <7018d437-a132-4a26-9c46-e61c96775fb4@huaweicloud.com> (raw)
In-Reply-To: <aaZbz6FWxJ97kdNu@linux.dev>



On 2026/3/3 12:01, Shakeel Butt wrote:
> On Tue, Mar 03, 2026 at 11:18:17AM +0800, Chen Ridong wrote:
>>
>>
> [...]
>>> @@ -4689,6 +4689,12 @@ void cgroup_file_notify(struct cgroup_file *cfile)
>>>  	unsigned long flags;
>>>  	struct kernfs_node *kn = NULL;
>>>  
>>> +	if (!READ_ONCE(cfile->kn))
>>> +		return;
>>> +
>>> +	if (timer_pending(&cfile->notify_timer))
>>> +		return;
>>> +
>>
>> The added timer_pending() check seems problematic. According to the function's
>> comment, callers must ensure serialization with other timer operations. Here
>> we're checking timer_pending() locklessly, which means we might:
>>
> 
> That comment seems outdated. Check the commit 90c018942c2ba ("timer: Use
> hlist_unhashed_lockless() in timer_pending()").
> 

Maybe we should update the comment.

>> 1. See an inconsistent state if another CPU is concurrently modifying the timer
>>
> 
> It will not see inconsistent state but it can see stale state which is totally
> fine. At worst we will take the lock and recheck but we will never miss the
> notifications.
> 

You are right. Thank you for explanation.


>> 2. Race with del_timer() or mod_timer() from other contexts
>>
>>>  	spin_lock_irqsave(&cgroup_file_kn_lock, flags);
>>>  	if (cfile->kn) {
>>>  		unsigned long last = cfile->notified_at;
>>
>> -- 
>> Best regards,
>> Ridong
>>

-- 
Best regards,
Ridong



  reply	other threads:[~2026-03-05  7:01 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-28 14:20 [PATCH 0/3] cgroup: improve cgroup_file_notify() scalability Shakeel Butt
2026-02-28 14:20 ` [PATCH 1/3] cgroup: reduce cgroup_file_kn_lock hold time in cgroup_file_notify() Shakeel Butt
2026-02-28 14:20 ` [PATCH 2/3] cgroup: add lockless fast-path checks to cgroup_file_notify() Shakeel Butt
2026-03-02  1:50   ` Chen Ridong
2026-03-02 16:14     ` Shakeel Butt
2026-03-02 17:00       ` Shakeel Butt
2026-03-03  3:18         ` Chen Ridong
2026-03-03  4:01           ` Shakeel Butt
2026-03-05  7:01             ` Chen Ridong [this message]
2026-03-03  3:08       ` Chen Ridong
2026-02-28 14:20 ` [PATCH 3/3] cgroup: replace global cgroup_file_kn_lock with per-cgroup_file lock Shakeel Butt

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=7018d437-a132-4a26-9c46-e61c96775fb4@huaweicloud.com \
    --to=chenridong@huaweicloud.com \
    --cc=cgroups@vger.kernel.org \
    --cc=daniel.sedlak@cdn77.com \
    --cc=hannes@cmpxchg.org \
    --cc=kernel-team@meta.com \
    --cc=kuba@kernel.org \
    --cc=kuniyu@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mkoutny@suse.com \
    --cc=netdev@vger.kernel.org \
    --cc=roman.gushchin@linux.dev \
    --cc=shakeel.butt@linux.dev \
    --cc=tj@kernel.org \
    /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