linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma()
@ 2025-04-01  9:43 Wei Yang
  2025-04-01  9:55 ` Lorenzo Stoakes
  0 siblings, 1 reply; 5+ messages in thread
From: Wei Yang @ 2025-04-01  9:43 UTC (permalink / raw)
  To: akpm
  Cc: linux-mm, Wei Yang, Lorenzo Stoakes, Jann Horn, Vlastimil Babka,
	Michel Lespinasse

In commit bf181b9f9d8d ("mm anon rmap: replace same_anon_vma linked
list with an interval tree."), the anon_vma.same_anon_vma is replaced by
interval tree.

But the related comment is left behind. Correct it here.

Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Cc: Jann Horn <jannh@google.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Michel Lespinasse <michel@lespinasse.org>
---
 mm/vma.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/mm/vma.c b/mm/vma.c
index 5cdc5612bfc1..1a155031f1fb 100644
--- a/mm/vma.c
+++ b/mm/vma.c
@@ -1989,16 +1989,16 @@ static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
 {
 	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
 		/*
-		 * The LSB of head.next can't change from under us
+		 * The LSB of rb_root.rb_node can't change from under us
 		 * because we hold the mm_all_locks_mutex.
 		 */
 		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
 		/*
-		 * We can safely modify head.next after taking the
+		 * We can safely modify rb_root.rb_node after taking the
 		 * anon_vma->root->rwsem. If some other vma in this mm shares
 		 * the same anon_vma we won't take it again.
 		 *
-		 * No need of atomic instructions here, head.next
+		 * No need of atomic instructions here, rb_root.rb_node
 		 * can't change from under us thanks to the
 		 * anon_vma->root->rwsem.
 		 */
@@ -2124,14 +2124,14 @@ static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
 {
 	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
 		/*
-		 * The LSB of head.next can't change to 0 from under
+		 * The LSB of rb_root.rb_node can't change to 0 from under
 		 * us because we hold the mm_all_locks_mutex.
 		 *
 		 * We must however clear the bitflag before unlocking
 		 * the vma so the users using the anon_vma->rb_root will
 		 * never see our bitflag.
 		 *
-		 * No need of atomic instructions here, head.next
+		 * No need of atomic instructions here, rb_root.rb_node
 		 * can't change from under us until we release the
 		 * anon_vma->root->rwsem.
 		 */
-- 
2.34.1



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma()
  2025-04-01  9:43 [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma() Wei Yang
@ 2025-04-01  9:55 ` Lorenzo Stoakes
  2025-04-01 11:46   ` Wei Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Lorenzo Stoakes @ 2025-04-01  9:55 UTC (permalink / raw)
  To: Wei Yang; +Cc: akpm, linux-mm, Jann Horn, Vlastimil Babka, Michel Lespinasse

On Tue, Apr 01, 2025 at 09:43:46AM +0000, Wei Yang wrote:
> In commit bf181b9f9d8d ("mm anon rmap: replace same_anon_vma linked
> list with an interval tree."), the anon_vma.same_anon_vma is replaced by
> interval tree.
>
> But the related comment is left behind. Correct it here.
>
> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>

Sorry, but I'd rather we didn't, this is un-useful churn, and I am planning to
make fairly wide-ranging alterations to anon_vma going forward, at which point
things like this can be addressed if needed.

Also, not to sound mean, but we have repeatedly asked you not to submit
these kinds of small 'fix up' patches. This one is relatively benign as
it's a comment change only, but previous ones you have made have been
directly problematic for us.

So to reiterate - please stop sending patches like this. Core mm is not the
place for them.

Thanks!

> Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> Cc: Jann Horn <jannh@google.com>
> Cc: Vlastimil Babka <vbabka@suse.cz>
> Cc: Michel Lespinasse <michel@lespinasse.org>
> ---
>  mm/vma.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/mm/vma.c b/mm/vma.c
> index 5cdc5612bfc1..1a155031f1fb 100644
> --- a/mm/vma.c
> +++ b/mm/vma.c
> @@ -1989,16 +1989,16 @@ static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
>  {
>  	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
>  		/*
> -		 * The LSB of head.next can't change from under us
> +		 * The LSB of rb_root.rb_node can't change from under us
>  		 * because we hold the mm_all_locks_mutex.
>  		 */
>  		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
>  		/*
> -		 * We can safely modify head.next after taking the
> +		 * We can safely modify rb_root.rb_node after taking the
>  		 * anon_vma->root->rwsem. If some other vma in this mm shares
>  		 * the same anon_vma we won't take it again.
>  		 *
> -		 * No need of atomic instructions here, head.next
> +		 * No need of atomic instructions here, rb_root.rb_node
>  		 * can't change from under us thanks to the
>  		 * anon_vma->root->rwsem.
>  		 */
> @@ -2124,14 +2124,14 @@ static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
>  {
>  	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
>  		/*
> -		 * The LSB of head.next can't change to 0 from under
> +		 * The LSB of rb_root.rb_node can't change to 0 from under
>  		 * us because we hold the mm_all_locks_mutex.
>  		 *
>  		 * We must however clear the bitflag before unlocking
>  		 * the vma so the users using the anon_vma->rb_root will
>  		 * never see our bitflag.
>  		 *
> -		 * No need of atomic instructions here, head.next
> +		 * No need of atomic instructions here, rb_root.rb_node
>  		 * can't change from under us until we release the
>  		 * anon_vma->root->rwsem.
>  		 */
> --
> 2.34.1
>
>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma()
  2025-04-01  9:55 ` Lorenzo Stoakes
@ 2025-04-01 11:46   ` Wei Yang
  2025-04-01 12:11     ` Lorenzo Stoakes
  0 siblings, 1 reply; 5+ messages in thread
From: Wei Yang @ 2025-04-01 11:46 UTC (permalink / raw)
  To: Lorenzo Stoakes
  Cc: Wei Yang, akpm, linux-mm, Jann Horn, Vlastimil Babka, Michel Lespinasse

On Tue, Apr 01, 2025 at 10:55:16AM +0100, Lorenzo Stoakes wrote:
>On Tue, Apr 01, 2025 at 09:43:46AM +0000, Wei Yang wrote:
>> In commit bf181b9f9d8d ("mm anon rmap: replace same_anon_vma linked
>> list with an interval tree."), the anon_vma.same_anon_vma is replaced by
>> interval tree.
>>
>> But the related comment is left behind. Correct it here.
>>
>> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
>
>Sorry, but I'd rather we didn't, this is un-useful churn, and I am planning to
>make fairly wide-ranging alterations to anon_vma going forward, at which point
>things like this can be addressed if needed.
>

Would you mind telling more about your plan on anon_vma alteration?

>Also, not to sound mean, but we have repeatedly asked you not to submit
>these kinds of small 'fix up' patches. This one is relatively benign as
>it's a comment change only, but previous ones you have made have been
>directly problematic for us.
>
>So to reiterate - please stop sending patches like this. Core mm is not the
>place for them.
>
>Thanks!
>
>> Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
>> Cc: Jann Horn <jannh@google.com>
>> Cc: Vlastimil Babka <vbabka@suse.cz>
>> Cc: Michel Lespinasse <michel@lespinasse.org>
>> ---
>>  mm/vma.c | 10 +++++-----
>>  1 file changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/mm/vma.c b/mm/vma.c
>> index 5cdc5612bfc1..1a155031f1fb 100644
>> --- a/mm/vma.c
>> +++ b/mm/vma.c
>> @@ -1989,16 +1989,16 @@ static void vm_lock_anon_vma(struct mm_struct *mm, struct anon_vma *anon_vma)
>>  {
>>  	if (!test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
>>  		/*
>> -		 * The LSB of head.next can't change from under us
>> +		 * The LSB of rb_root.rb_node can't change from under us
>>  		 * because we hold the mm_all_locks_mutex.
>>  		 */
>>  		down_write_nest_lock(&anon_vma->root->rwsem, &mm->mmap_lock);
>>  		/*
>> -		 * We can safely modify head.next after taking the
>> +		 * We can safely modify rb_root.rb_node after taking the
>>  		 * anon_vma->root->rwsem. If some other vma in this mm shares
>>  		 * the same anon_vma we won't take it again.
>>  		 *
>> -		 * No need of atomic instructions here, head.next
>> +		 * No need of atomic instructions here, rb_root.rb_node
>>  		 * can't change from under us thanks to the
>>  		 * anon_vma->root->rwsem.
>>  		 */
>> @@ -2124,14 +2124,14 @@ static void vm_unlock_anon_vma(struct anon_vma *anon_vma)
>>  {
>>  	if (test_bit(0, (unsigned long *) &anon_vma->root->rb_root.rb_root.rb_node)) {
>>  		/*
>> -		 * The LSB of head.next can't change to 0 from under
>> +		 * The LSB of rb_root.rb_node can't change to 0 from under
>>  		 * us because we hold the mm_all_locks_mutex.
>>  		 *
>>  		 * We must however clear the bitflag before unlocking
>>  		 * the vma so the users using the anon_vma->rb_root will
>>  		 * never see our bitflag.
>>  		 *
>> -		 * No need of atomic instructions here, head.next
>> +		 * No need of atomic instructions here, rb_root.rb_node
>>  		 * can't change from under us until we release the
>>  		 * anon_vma->root->rwsem.
>>  		 */
>> --
>> 2.34.1
>>
>>

-- 
Wei Yang
Help you, Help me


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma()
  2025-04-01 11:46   ` Wei Yang
@ 2025-04-01 12:11     ` Lorenzo Stoakes
  2025-04-01 23:37       ` Wei Yang
  0 siblings, 1 reply; 5+ messages in thread
From: Lorenzo Stoakes @ 2025-04-01 12:11 UTC (permalink / raw)
  To: Wei Yang; +Cc: akpm, linux-mm, Jann Horn, Vlastimil Babka, Michel Lespinasse

On Tue, Apr 01, 2025 at 11:46:29AM +0000, Wei Yang wrote:
> On Tue, Apr 01, 2025 at 10:55:16AM +0100, Lorenzo Stoakes wrote:
> >On Tue, Apr 01, 2025 at 09:43:46AM +0000, Wei Yang wrote:
> >> In commit bf181b9f9d8d ("mm anon rmap: replace same_anon_vma linked
> >> list with an interval tree."), the anon_vma.same_anon_vma is replaced by
> >> interval tree.
> >>
> >> But the related comment is left behind. Correct it here.
> >>
> >> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
> >
> >Sorry, but I'd rather we didn't, this is un-useful churn, and I am planning to
> >make fairly wide-ranging alterations to anon_vma going forward, at which point
> >things like this can be addressed if needed.
> >
>
> Would you mind telling more about your plan on anon_vma alteration?

Well ultimately finding some means of representing this better _in general_ :)

But you can see some early spring roots of this in the LWN article on my talk at
lsf/mm - https://lwn.net/Articles/1015762/

There's a bunch of patches in relation to this, the article links the
MREMAP_RELOCATE_ANON stuff but there's also a preparatory patch that improves
merging.

I plan to do quite a bit more with all of this.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma()
  2025-04-01 12:11     ` Lorenzo Stoakes
@ 2025-04-01 23:37       ` Wei Yang
  0 siblings, 0 replies; 5+ messages in thread
From: Wei Yang @ 2025-04-01 23:37 UTC (permalink / raw)
  To: Lorenzo Stoakes
  Cc: Wei Yang, akpm, linux-mm, Jann Horn, Vlastimil Babka, Michel Lespinasse

On Tue, Apr 01, 2025 at 01:11:15PM +0100, Lorenzo Stoakes wrote:
>On Tue, Apr 01, 2025 at 11:46:29AM +0000, Wei Yang wrote:
>> On Tue, Apr 01, 2025 at 10:55:16AM +0100, Lorenzo Stoakes wrote:
>> >On Tue, Apr 01, 2025 at 09:43:46AM +0000, Wei Yang wrote:
>> >> In commit bf181b9f9d8d ("mm anon rmap: replace same_anon_vma linked
>> >> list with an interval tree."), the anon_vma.same_anon_vma is replaced by
>> >> interval tree.
>> >>
>> >> But the related comment is left behind. Correct it here.
>> >>
>> >> Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
>> >
>> >Sorry, but I'd rather we didn't, this is un-useful churn, and I am planning to
>> >make fairly wide-ranging alterations to anon_vma going forward, at which point
>> >things like this can be addressed if needed.
>> >
>>
>> Would you mind telling more about your plan on anon_vma alteration?
>
>Well ultimately finding some means of representing this better _in general_ :)
>
>But you can see some early spring roots of this in the LWN article on my talk at
>lsf/mm - https://lwn.net/Articles/1015762/
>
>There's a bunch of patches in relation to this, the article links the
>MREMAP_RELOCATE_ANON stuff but there's also a preparatory patch that improves
>merging.
>

Thanks for your information. I would take a look.

>I plan to do quite a bit more with all of this.

-- 
Wei Yang
Help you, Help me


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-04-01 23:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-04-01  9:43 [PATCH] mm/vma: correct legacy comment in vm_[un]lock_anon_vma() Wei Yang
2025-04-01  9:55 ` Lorenzo Stoakes
2025-04-01 11:46   ` Wei Yang
2025-04-01 12:11     ` Lorenzo Stoakes
2025-04-01 23:37       ` Wei Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox