Skip to content
Snippets Groups Projects
Commit a50ed2d2 authored by Seth Jenkins's avatar Seth Jenkins Committed by Greg Kroah-Hartman
Browse files

mm: /proc/pid/smaps_rollup: fix no vma's null-deref


Commit 258f669e ("mm: /proc/pid/smaps_rollup: convert to single value
seq_file") introduced a null-deref if there are no vma's in the task in
show_smaps_rollup.

Fixes: 258f669e ("mm: /proc/pid/smaps_rollup: convert to single value seq_file")
Signed-off-by: default avatarSeth Jenkins <sethjenkins@google.com>
Reviewed-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Tested-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 31b15706
No related branches found
No related tags found
1 merge request!15.10.61 -> 5.10.152 upgrade
...@@ -951,7 +951,7 @@ static int show_smaps_rollup(struct seq_file *m, void *v) ...@@ -951,7 +951,7 @@ static int show_smaps_rollup(struct seq_file *m, void *v)
vma = vma->vm_next; vma = vma->vm_next;
} }
show_vma_header_prefix(m, priv->mm->mmap->vm_start, show_vma_header_prefix(m, priv->mm->mmap ? priv->mm->mmap->vm_start : 0,
last_vma_end, 0, 0, 0, 0); last_vma_end, 0, 0, 0, 0);
seq_pad(m, ' '); seq_pad(m, ' ');
seq_puts(m, "[rollup]\n"); seq_puts(m, "[rollup]\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment