From: David Hildenbrand <david@redhat.com>
To: Tal Zussman <tz2294@columbia.edu>,
Andrew Morton <akpm@linux-foundation.org>,
Peter Xu <peterx@redhat.com>,
"Jason A. Donenfeld" <Jason@zx2c4.com>,
Alexander Viro <viro@zeniv.linux.org.uk>,
Christian Brauner <brauner@kernel.org>, Jan Kara <jack@suse.cz>,
Andrea Arcangeli <aarcange@redhat.com>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH v2 2/4] userfaultfd: remove (VM_)BUG_ON()s
Date: Tue, 10 Jun 2025 09:26:01 +0200 [thread overview]
Message-ID: <b1c61317-a17d-4ca0-88d4-d22e6b536de6@redhat.com> (raw)
In-Reply-To: <20250607-uffd-fixes-v2-2-339dafe9a2fe@columbia.edu>
On 07.06.25 08:40, Tal Zussman wrote:
> BUG_ON() is deprecated [1]. Convert all the BUG_ON()s and VM_BUG_ON()s
> to use VM_WARN_ON_ONCE().
>
> While at it, also convert the WARN_ON_ONCE()s in move_pages() to use
> VM_WARN_ON_ONCE(), as the relevant conditions are already checked in
> validate_range() in move_pages()'s caller.
>
> [1] https://www.kernel.org/doc/html/v6.15/process/coding-style.html#use-warn-rather-than-bug
>
> Signed-off-by: Tal Zussman <tz2294@columbia.edu>
> ---
[...]
> if (ctx->features & UFFD_FEATURE_SIGBUS)
> goto out;
> @@ -411,12 +411,11 @@ vm_fault_t handle_userfault(struct vm_fault *vmf, unsigned long reason)
> * to be sure not to return SIGBUS erroneously on
> * nowait invocations.
> */
> - BUG_ON(vmf->flags & FAULT_FLAG_RETRY_NOWAIT);
> + VM_WARN_ON_ONCE(vmf->flags & FAULT_FLAG_RETRY_NOWAIT);
> #ifdef CONFIG_DEBUG_VM
> if (printk_ratelimit()) {
> - printk(KERN_WARNING
> - "FAULT_FLAG_ALLOW_RETRY missing %x\n",
> - vmf->flags);
> + pr_warn("FAULT_FLAG_ALLOW_RETRY missing %x\n",
> + vmf->flags);
You didn't cover that in the patch description.
I do wonder if we really still want the dump_stack() here and could
simplify to
pr_warn_ratelimited().
But I recall that the stack was helpful at least once for me (well, I
was able to reproduce and could have figured it out differently.).
[...]
> err = uffd_move_lock(mm, dst_start, src_start, &dst_vma, &src_vma);
> if (err)
> @@ -1867,9 +1865,9 @@ ssize_t move_pages(struct userfaultfd_ctx *ctx, unsigned long dst_start,
> up_read(&ctx->map_changing_lock);
> uffd_move_unlock(dst_vma, src_vma);
> out:
> - VM_WARN_ON(moved < 0);
> - VM_WARN_ON(err > 0);
> - VM_WARN_ON(!moved && !err);
> + VM_WARN_ON_ONCE(moved < 0);
> + VM_WARN_ON_ONCE(err > 0);
> + VM_WARN_ON_ONCE(!moved && !err);
> return moved ? moved : err;
Here you convert VM_WARN_ON to VM_WARN_ON_ONCE without stating it in the
description (including the why).
> @@ -1956,9 +1954,9 @@ int userfaultfd_register_range(struct userfaultfd_ctx *ctx,
> for_each_vma_range(vmi, vma, end) {
> cond_resched();
>
> - BUG_ON(!vma_can_userfault(vma, vm_flags, wp_async));
> - BUG_ON(vma->vm_userfaultfd_ctx.ctx &&
> - vma->vm_userfaultfd_ctx.ctx != ctx);
> + VM_WARN_ON_ONCE(!vma_can_userfault(vma, vm_flags, wp_async));
> + VM_WARN_ON_ONCE(vma->vm_userfaultfd_ctx.ctx &&
> + vma->vm_userfaultfd_ctx.ctx != ctx);
> WARN_ON(!(vma->vm_flags & VM_MAYWRITE));
Which raises the question, why this here should still be a WARN
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2025-06-10 7:26 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-07 6:39 [PATCH v2 0/4] mm: userfaultfd: assorted fixes and cleanups Tal Zussman
2025-06-07 6:40 ` [PATCH v2 1/4] userfaultfd: correctly prevent registering VM_DROPPABLE regions Tal Zussman
2025-06-07 14:40 ` Jason A. Donenfeld
2025-06-07 22:04 ` Andrew Morton
2025-06-09 15:02 ` Peter Xu
2025-06-07 6:40 ` [PATCH v2 2/4] userfaultfd: remove (VM_)BUG_ON()s Tal Zussman
2025-06-10 7:26 ` David Hildenbrand [this message]
2025-06-17 23:10 ` Tal Zussman
2025-06-23 15:18 ` David Hildenbrand
2025-06-10 13:11 ` Peter Xu
2025-06-10 13:17 ` David Hildenbrand
2025-06-07 6:40 ` [PATCH v2 3/4] userfaultfd: prevent unregistering VMAs through a different userfaultfd Tal Zussman
2025-06-10 7:30 ` David Hildenbrand
2025-06-17 20:50 ` Tal Zussman
2025-06-07 6:40 ` [PATCH v2 4/4] userfaultfd: remove UFFD_CLOEXEC, UFFD_NONBLOCK, and UFFD_FLAGS_SET Tal Zussman
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=b1c61317-a17d-4ca0-88d4-d22e6b536de6@redhat.com \
--to=david@redhat.com \
--cc=Jason@zx2c4.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=brauner@kernel.org \
--cc=jack@suse.cz \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=peterx@redhat.com \
--cc=tz2294@columbia.edu \
--cc=viro@zeniv.linux.org.uk \
/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).