aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2022-10-18 13:57:37 -0700
committerAndrew Morton <akpm@linux-foundation.org>2022-10-20 21:27:23 -0700
commit1cd916d0340d0f45b151599c24ec40b5b2fd8e4a (patch)
treea17ce4b989ec61dcff82dc09885a80c255cadc21
parentmm/mmap: undo ->mmap() when mas_preallocate() fails (diff)
downloadlinux-dev-1cd916d0340d0f45b151599c24ec40b5b2fd8e4a.tar.xz
linux-dev-1cd916d0340d0f45b151599c24ec40b5b2fd8e4a.zip
mm/mmap.c: __vma_adjust(): suppress uninitialized var warning
The code is OK, but it fools gcc. mm/mmap.c:802 __vma_adjust() error: uninitialized symbol 'next_next'. Fixes: 524e00b36e8c5 ("mm: remove rb tree.") Reported-by: kernel test robot <lkp@intel.com> Cc: Liam R. Howlett <Liam.Howlett@Oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r--mm/mmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/mmap.c b/mm/mmap.c
index 3c9890e443a3..721fe5c82a0e 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -618,7 +618,8 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
struct vm_area_struct *expand)
{
struct mm_struct *mm = vma->vm_mm;
- struct vm_area_struct *next_next, *next = find_vma(mm, vma->vm_end);
+ struct vm_area_struct *next_next = NULL; /* uninit var warning */
+ struct vm_area_struct *next = find_vma(mm, vma->vm_end);
struct vm_area_struct *orig_vma = vma;
struct address_space *mapping = NULL;
struct rb_root_cached *root = NULL;