diff options
author | Kirill A. Shutemov <[email protected]> | 2018-07-26 16:37:30 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2018-07-26 19:38:03 -0700 |
commit | 2c4541e24c55e2847bede93e33d749280edd429a (patch) | |
tree | c0d440dee0cd3129e8c7a0d182407c6804543c51 /arch/x86/um/mem_32.c | |
parent | 027232da7c7c1c7f04383f93bd798e475dde5285 (diff) |
mm: use vma_init() to initialize VMAs on stack and data segments
Make sure to initialize all VMAs properly, not only those which come
from vm_area_cachep.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Kirill A. Shutemov <[email protected]>
Acked-by: Linus Torvalds <[email protected]>
Reviewed-by: Andrew Morton <[email protected]>
Cc: Dmitry Vyukov <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Cc: Andrea Arcangeli <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'arch/x86/um/mem_32.c')
-rw-r--r-- | arch/x86/um/mem_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/um/mem_32.c b/arch/x86/um/mem_32.c index 744afdc18cf3..56c44d865f7b 100644 --- a/arch/x86/um/mem_32.c +++ b/arch/x86/um/mem_32.c @@ -16,7 +16,7 @@ static int __init gate_vma_init(void) if (!FIXADDR_USER_START) return 0; - gate_vma.vm_mm = NULL; + vma_init(&gate_vma, NULL); gate_vma.vm_start = FIXADDR_USER_START; gate_vma.vm_end = FIXADDR_USER_END; gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC; |