linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm/vma: Add VM_WARN_ON for commit_merge
@ 2025-01-16  2:50 Liu Ye
  2025-01-16  4:01 ` Andrew Morton
  2025-01-16  7:44 ` Lorenzo Stoakes
  0 siblings, 2 replies; 4+ messages in thread
From: Liu Ye @ 2025-01-16  2:50 UTC (permalink / raw)
  To: akpm, Liam.Howlett, lorenzo.stoakes
  Cc: jannh, vbabka, linux-mm, linux-kernel, Liu Ye

    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



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

end of thread, other threads:[~2025-01-16  7:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-16  2:50 [PATCH] mm/vma: Add VM_WARN_ON for commit_merge Liu Ye
2025-01-16  4:01 ` Andrew Morton
2025-01-16  6:06   ` liuye
2025-01-16  7:44 ` Lorenzo Stoakes

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