From: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
To: Matthew Wilcox <willy@infradead.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org,
syzbot+5b19bad23ac7f44bf8b8@syzkaller.appspotmail.com,
Suren Baghdasaryan <surenb@google.com>,
"Liam R. Howlett" <Liam.Howlett@oracle.com>,
Vlastimil Babka <vbabka@suse.cz>
Subject: Re: [PATCH v2] mm: fix vma_start_write_killable() signal handling
Date: Thu, 27 Nov 2025 06:26:48 +0000 [thread overview]
Message-ID: <60dca13b-3405-4137-a6bc-28a7d6795eaa@lucifer.local> (raw)
In-Reply-To: <aSd6oH29iELxxU5o@casper.infradead.org>
Feel free to send what you have below and you can add:
Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
On Wed, Nov 26, 2025 at 10:09:36PM +0000, Matthew Wilcox wrote:
> On Wed, Nov 26, 2025 at 08:33:47PM +0000, Lorenzo Stoakes wrote:
> > On Wed, Nov 26, 2025 at 07:44:17PM +0000, Matthew Wilcox wrote:
> > > On Wed, Nov 26, 2025 at 06:55:52PM +0000, Lorenzo Stoakes wrote:
> > > > > It's only "impossible" currently due to some fairly esoteric reasoning.
> > > > > As far as _this_ function is concerned, it's entirely possible.
> > > > > I don't want to leave this trap for the next person who calls
> > > > > __vma_enter_locked(TASK_KILLABLE).
> > > >
> > > > Calls __vma_enter_locked(TASK_KILLABLE) _when detaching_, otherwise
> > > > refcount will always be >0.
> > > >
> > > > So we're only looking at us changing vma_mark_detached() to use
> > > > TASK_KILLABLE.
> > > >
> > > > As this is such a subtle corner case I still think it warrants a
> > > > warning. Or at least a VM_WARN_ON_ONCE(1).
> > > >
> > > > A killable detacher is, as Vlasta points out, kind of an unwise thing to do
> > > > anyway right?
> > >
> > > I missed where that was said?
> >
> > "Yeah I guess it's for the best to keep vma_mark_detached() use the
> > TASK_UNINTERRUPTIBLE variant, maybe document why. Aborting the detaching
> > would be counter productive."
> >
> > https://lore.kernel.org/all/058f5858-f508-40f8-adfe-e5de78621d64@suse.cz/
>
> I'm not entirely clear on why aborting a detach is always a bad idea,
> but that's part of the MM I don't really understand.
Ack insert moany waffle about this impl. being confusing for _everybody_ here :)
>
> > - A fatal signal arose (assuming nobody ever goes and changes
> > rcuwait_wait_event() to add more errors - very likely, not entirely certain
> > though, so perhaps 'an error that meant we couldn't wait'.)
>
> It actually doesn't matter why we got an error. We got an error.
> But also the last reader went away. So we're now in a state where we
> would not have needed to sleep had we got here half a nanosecond later
> than we did.
Right, sure.
>
> > Since you're concerned about the urgency, let me suggest a compromise:
> >
> > /*
> > * We tried waiting on readers, but failed, likely due to a fatal
> > * signal arising. Unlock the VMA and check whether the VMA is
> > * detached.
> > */
>
> I think the 'if (err)' is enough to tell the reader that we failed!
Yup, but not the unlocking... I can address that later in the series I'm
inevitably going to end up sending to improve this file :)
>
> > if (refcount_sub_and_test(VMA_LOCK_OFFSET, &vma->vm_refcnt)) {
> > /*
> > * If the VMA is now detached which means we lost a race.
> > * Let the caller know the VMA is detached.
> > */
> > err = 0;
> > }
> >
> > That gives a _lot_ more information, keeps it relatively top-level, doesn't
> > make undue assumptions etc.
>
> Here's what I now have:
>
> if (err) {
> if (refcount_sub_and_test(VMA_LOCK_OFFSET, &vma->vm_refcnt)) {
> /*
> * The wait failed, but the last reader went away
> * as well. Tell the caller the VMA is detached.
> */
> WARN_ON_ONCE(!detaching);
> err = 0;
> }
OK this is fine, respin or ask Andrew to fix-patch and have a tag :)
>
> > > Are you satisfied with the WARN_ON(!detaching)?
> > >
> >
> > It'd be super weird to reach that code when not detaching so sure, think it
> > should be VM_WARN_ON() though since the code would be horribly broken if
> > that was not the case already no?
>
> The other places in this file are WARN_ON_ONCE rather than VM_WARN*, so
> keep it consistent.
>
Fine, sure.
Cheers, Lorenzo
next prev parent reply other threads:[~2025-11-27 6:27 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-26 17:44 Matthew Wilcox (Oracle)
2025-11-26 18:06 ` Lorenzo Stoakes
2025-11-26 18:28 ` Matthew Wilcox
2025-11-26 18:43 ` Suren Baghdasaryan
2025-11-26 18:53 ` Vlastimil Babka
2025-11-26 19:34 ` Matthew Wilcox
2025-11-26 19:00 ` Lorenzo Stoakes
2025-11-26 18:55 ` Lorenzo Stoakes
2025-11-26 19:44 ` Matthew Wilcox
2025-11-26 20:33 ` Lorenzo Stoakes
2025-11-26 20:35 ` Lorenzo Stoakes
2025-11-26 22:09 ` Matthew Wilcox
2025-11-27 6:26 ` Lorenzo Stoakes [this message]
2025-11-27 9:05 ` Vlastimil Babka
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=60dca13b-3405-4137-a6bc-28a7d6795eaa@lucifer.local \
--to=lorenzo.stoakes@oracle.com \
--cc=Liam.Howlett@oracle.com \
--cc=akpm@linux-foundation.org \
--cc=linux-mm@kvack.org \
--cc=surenb@google.com \
--cc=syzbot+5b19bad23ac7f44bf8b8@syzkaller.appspotmail.com \
--cc=vbabka@suse.cz \
--cc=willy@infradead.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