From: Suren Baghdasaryan <surenb@google.com>
To: Wei Yang <richard.weiyang@gmail.com>
Cc: akpm@linux-foundation.org, peterz@infradead.org,
willy@infradead.org, liam.howlett@oracle.com,
lorenzo.stoakes@oracle.com, mhocko@suse.com, vbabka@suse.cz,
hannes@cmpxchg.org, mjguzik@gmail.com, oliver.sang@intel.com,
mgorman@techsingularity.net, david@redhat.com,
peterx@redhat.com, oleg@redhat.com, dave@stgolabs.net,
paulmck@kernel.org, brauner@kernel.org, dhowells@redhat.com,
hdanton@sina.com, hughd@google.com, lokeshgidra@google.com,
minchan@google.com, jannh@google.com, shakeel.butt@linux.dev,
souravpanda@google.com, pasha.tatashin@soleen.com,
klarasmodin@gmail.com, corbet@lwn.net,
linux-doc@vger.kernel.org, linux-mm@kvack.org,
linux-kernel@vger.kernel.org, kernel-team@android.com
Subject: Re: [PATCH 1/1] mm: remove extra check for VMA_LOCK_OFFSET when read-locking a vma
Date: Tue, 7 Jan 2025 15:22:11 -0800 [thread overview]
Message-ID: <CAJuCfpGq5yQwcMsqKTuHN50PCrd=w=55Sv2P1cjyuPYxnn=1gA@mail.gmail.com> (raw)
In-Reply-To: <20250107122809.ofddv3yw44ciaklm@master>
On Tue, Jan 7, 2025 at 4:28 AM Wei Yang <richard.weiyang@gmail.com> wrote:
>
> On Mon, Jan 06, 2025 at 07:04:15PM -0800, Suren Baghdasaryan wrote:
> >Since we limit vm_refcnt at VMA_REF_LIMIT and it's smaller than
> >VMA_LOCK_OFFSET, there is no need to check again if VMA_LOCK_OFFSET bit
> >is set. Remove the extra check and add a clarifying comment.
> >
> >Fixes: e8f32ff00a66 ("mm: replace vm_lock and detached flag with a reference count")
> >Suggested-by: Wei Yang <richard.weiyang@gmail.com>
> >Signed-off-by: Suren Baghdasaryan <surenb@google.com>
>
> Reviewed-by: Wei Yang <richard.weiyang@gmail.com>
Since I have to respin v8, I'll fold this fix into the original patch.
>
> >---
> >Applies over mm-unstable
> >
> > include/linux/mm.h | 9 ++++++---
> > 1 file changed, 6 insertions(+), 3 deletions(-)
> >
> >diff --git a/include/linux/mm.h b/include/linux/mm.h
> >index 486638d22fc6..b5f262fc7dc5 100644
> >--- a/include/linux/mm.h
> >+++ b/include/linux/mm.h
> >@@ -747,7 +747,11 @@ static inline bool vma_start_read(struct mm_struct *mm, struct vm_area_struct *v
> >
> >
> > rwsem_acquire_read(&vma->vmlock_dep_map, 0, 0, _RET_IP_);
> >- /* Limit at VMA_REF_LIMIT to leave one count for a writer */
> >+ /*
> >+ * Limit at VMA_REF_LIMIT to leave one count for a writer.
> >+ * If VMA_LOCK_OFFSET is set, __refcount_inc_not_zero_limited() will fail
> >+ * because VMA_REF_LIMIT is less than VMA_LOCK_OFFSET.
> >+ */
> > if (unlikely(!__refcount_inc_not_zero_limited(&vma->vm_refcnt, &oldcnt,
> > VMA_REF_LIMIT))) {
> > rwsem_release(&vma->vmlock_dep_map, _RET_IP_);
> >@@ -766,8 +770,7 @@ static inline bool vma_start_read(struct mm_struct *mm, struct vm_area_struct *v
> > * after it has been unlocked.
> > * This pairs with RELEASE semantics in vma_end_write_all().
> > */
> >- if (unlikely(oldcnt & VMA_LOCK_OFFSET ||
> >- vma->vm_lock_seq == raw_read_seqcount(&mm->mm_lock_seq))) {
> >+ if (unlikely(vma->vm_lock_seq == raw_read_seqcount(&mm->mm_lock_seq))) {
> > vma_refcount_put(vma);
> > return false;
> > }
> >
> >base-commit: f349e79bfbf3abfade8011797ff6d0d47b67dab7
> >--
> >2.47.1.613.gc27f4b7a9f-goog
>
> --
> Wei Yang
> Help you, Help me
prev parent reply other threads:[~2025-01-07 23:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-07 3:04 Suren Baghdasaryan
2025-01-07 12:28 ` Wei Yang
2025-01-07 23:22 ` Suren Baghdasaryan [this message]
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='CAJuCfpGq5yQwcMsqKTuHN50PCrd=w=55Sv2P1cjyuPYxnn=1gA@mail.gmail.com' \
--to=surenb@google.com \
--cc=akpm@linux-foundation.org \
--cc=brauner@kernel.org \
--cc=corbet@lwn.net \
--cc=dave@stgolabs.net \
--cc=david@redhat.com \
--cc=dhowells@redhat.com \
--cc=hannes@cmpxchg.org \
--cc=hdanton@sina.com \
--cc=hughd@google.com \
--cc=jannh@google.com \
--cc=kernel-team@android.com \
--cc=klarasmodin@gmail.com \
--cc=liam.howlett@oracle.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lokeshgidra@google.com \
--cc=lorenzo.stoakes@oracle.com \
--cc=mgorman@techsingularity.net \
--cc=mhocko@suse.com \
--cc=minchan@google.com \
--cc=mjguzik@gmail.com \
--cc=oleg@redhat.com \
--cc=oliver.sang@intel.com \
--cc=pasha.tatashin@soleen.com \
--cc=paulmck@kernel.org \
--cc=peterx@redhat.com \
--cc=peterz@infradead.org \
--cc=richard.weiyang@gmail.com \
--cc=shakeel.butt@linux.dev \
--cc=souravpanda@google.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