Re: [PATCH v3 1/5] mm: Make per-VMA locks available universally
Jann Horn <[email protected]> Mon, 3 Aug 2026 23:12:01 +0200
| Newsgroups | org.kvack.linux-mm,org.kernel.vger.linux-kernel,org.kernel.vger.netdev |
|---|---|
| Message-ID | <CAG48ez1=_O0g7rArdpoVwg84jOJuELEAXu5sw=TO_CWBsK=T7w@mail.gmail.com> |
On Mon, Aug 3, 2026 at 6:08=E2=80=AFPM Lorenzo Stoakes (ARM) <[email protected]= g> wrote: > On Mon, Aug 03, 2026 at 08:24:44AM -0700, Suren Baghdasaryan wrote: > > On Sun, Aug 2, 2026 at 2:55=E2=80=AFPM Suren Baghdasaryan <surenb@googl= e.com> wrote: > > > -#endif /* CONFIG_PER_VMA_LOCK */ > > > > Now that I'm looking closer into this, I think we would break NOMMU > > case because nommu.c does not take VMA write locks at all. So, > > lock_vma_under_rcu() for example would always succeed. > > I don't think anything's broken actually. > > Per-VMA locks was gated on CONFIG_MMU so nothing there assumes per-VMA fl= ags, > but now you have stuff that happens that didn't before but: > > * vm_area_free() -> vma_assert_detached() - fine - it's always detached i= n nommu. I don't think that's true, AFAICS vma_mark_attached() is called from vma_iter_store_new() which is called from the nommu version of do_mmap(). But I think you're right that one blunt workaround for this would be to add a hack that prevents ever marking VMAs in nommu as attached... > * vm_area_dup() -> vma_lock_init() - no asserts, just sets refcount to 0 = (correct).