From: Al Viro <viro@zeniv.linux.org.uk>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Miklos Szeredi <miklos@szeredi.hu>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [GIT PULL] fuse update for 6.19
Date: Sat, 6 Dec 2025 04:22:42 +0000 [thread overview]
Message-ID: <20251206042242.GS1712166@ZenIV> (raw)
In-Reply-To: <20251206035403.GR1712166@ZenIV>
On Sat, Dec 06, 2025 at 03:54:03AM +0000, Al Viro wrote:
> On Fri, Dec 05, 2025 at 07:29:13PM -0800, Linus Torvalds wrote:
> > On Fri, 5 Dec 2025 at 18:28, Al Viro <viro@zeniv.linux.org.uk> wrote:
> > >
> > > Sure, ->d_prune() would take it out of the rbtree, but what if it hits
> >
> > Ahh.
> >
> > Maybe increase the d_count before releasing that rbtree lock?
> >
> > Or yeah, maybe moving it to d_release. Miklos?
>
> Moving it to ->d_release() would be my preference, TBH. Then
> we could simply dget() the sucker under the lock and follow
> that with existing dput_to_list() after dropping the lock...
s/dget/grab ->d_lock, increment ->d_count if not negative,
drop ->d_lock/ - we need to deal with the possibility of
the victim just going into __dentry_kill() as we find it.
And yes, it would be better off with something like
lockref_get_if_zero(struct lockref *lockref)
{
bool retval = false;
CMPXCHG_LOOP(
new.count++;
if (old_count != 0)
return false;
,
return true;
);
spin_lock(&lockref->lock);
if (lockref->count == 0)
lockref->count = 1;
retval = true;
}
spin_unlock(&lockref->lock);
return retval;
}
with
while (node) {
fd = rb_entry(node, struct fuse_dentry, node);
if (!time_after64(get_jiffies_64(), fd->time))
break;
rb_erase(&fd->node, &dentry_hash[i].tree);
RB_CLEAR_NODE(&fd->node);
if (lockref_get_if_zero(&dentry->d_lockref))
dput_to_list(dentry);
if (need_resched()) {
spin_unlock(&dentry_hash[i].lock);
schedule();
spin_lock(&dentry_hash[i].lock);
}
node = rb_first(&dentry_hash[i].tree);
}
in that loop. Actually... a couple of questions:
* why do we call shrink_dentry_list() separately for each hash
bucket? Easier to gather everything and call it once...
* what's the point of rbtree there? What's wrong with plain
hlist? Folks?
next prev parent reply other threads:[~2025-12-06 4:22 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-04 8:25 [GIT PULL] fuse update for 6.19 Miklos Szeredi
2025-12-05 23:47 ` Linus Torvalds
2025-12-06 1:42 ` Al Viro
2025-12-06 1:52 ` Linus Torvalds
2025-12-06 2:28 ` Al Viro
2025-12-06 3:10 ` Al Viro
2025-12-06 3:29 ` Linus Torvalds
2025-12-06 3:54 ` Al Viro
2025-12-06 4:22 ` Al Viro [this message]
2025-12-08 10:37 ` Miklos Szeredi
2026-01-14 15:23 ` Miklos Szeredi
2025-12-06 0:17 ` pr-tracker-bot
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=20251206042242.GS1712166@ZenIV \
--to=viro@zeniv.linux.org.uk \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=miklos@szeredi.hu \
--cc=torvalds@linux-foundation.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