linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
To: Liu Ye <liuye@kylinos.cn>
Cc: akpm@linux-foundation.org, Liam.Howlett@oracle.com,
	jannh@google.com, vbabka@suse.cz, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm/vma: Add VM_WARN_ON for commit_merge
Date: Thu, 16 Jan 2025 07:44:42 +0000	[thread overview]
Message-ID: <d357bd00-6500-4332-8c46-17deee481de5@lucifer.local> (raw)
In-Reply-To: <20250116025005.55846-1-liuye@kylinos.cn>

Thanks for the patch!

It's not possible for this scenario to happen in practice, so this check just
adds confusion.

There are two callers - the one from vma_expand() which unconditionally sets
expand true, and the one from vma_merge_existing_range() (note that
vma_merge_new_range() ultimately invokes vma_expand()).

The vma_merge_existing_range() case will nearly always set expand, should a
merge be indicated. In the one instance where it will not, adjust will always be
set to a non-NULL value.

Unfortunately this is super unclear, which is a big hint that refactoring is
required - and it's something I've already started working on - so I will take
this as a signal to increase the priority on this.

So this has to be a no unfortunately, but thank you very much highlighting this
as it clearly indicates the need to improve this, which is hugely valuable!

Thanks, Lorenzo

On Thu, Jan 16, 2025 at 10:50:05AM +0800, Liu Ye wrote:
>     Add VM_WARN_ON to prevent 'adjust' from accessing NULL pointers
>     when 'adjust' is NULL and 'expanded' is false or 'adj_start' is
>     not zero.
> Signed-off-by: Liu Ye <liuye@kylinos.cn>
> ---
>  mm/vma.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/mm/vma.c b/mm/vma.c
> index 31c9c6f51c9f..36b5ac675504 100644
> --- a/mm/vma.c
> +++ b/mm/vma.c
> @@ -641,6 +641,7 @@ static int commit_merge(struct vma_merge_struct *vmg,
>
>  	init_multi_vma_prep(&vp, vmg->vma, adjust, remove, remove2);
>
> +	VM_WARN_ON(!adjust && (!expanded || adj_start));
>  	VM_WARN_ON(vp.anon_vma && adjust && adjust->anon_vma &&
>  		   vp.anon_vma != adjust->anon_vma);
>
> --
> 2.25.1
>


      parent reply	other threads:[~2025-01-16  7:45 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-16  2:50 Liu Ye
2025-01-16  4:01 ` Andrew Morton
2025-01-16  6:06   ` liuye
2025-01-16  7:44 ` Lorenzo Stoakes [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=d357bd00-6500-4332-8c46-17deee481de5@lucifer.local \
    --to=lorenzo.stoakes@oracle.com \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=jannh@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=liuye@kylinos.cn \
    --cc=vbabka@suse.cz \
    /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