diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-09-04 12:22:54 -0400 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2017-09-04 12:22:54 -0400 |
commit | a6cbfa1e6d38c4b3ab0ce7e3aea4bb4e744f24b8 (patch) | |
tree | 8960e571a398b5d32e72bdb9c89ce965daa870ab /arch/mips/mm/mmap.c | |
parent | f5308d1b83eba20e69df5e0926ba7257c8dd9074 (diff) | |
parent | 08d6ac9ee5fedd82040bc878705981b67a116a3f (diff) |
Merge branch 'next' into for-linus
Prepare input updates for 4.14 merge window.
Diffstat (limited to 'arch/mips/mm/mmap.c')
-rw-r--r-- | arch/mips/mm/mmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/mmap.c b/arch/mips/mm/mmap.c index 64dd8bdd92c3..28adeabe851f 100644 --- a/arch/mips/mm/mmap.c +++ b/arch/mips/mm/mmap.c | |||
@@ -93,7 +93,7 @@ static unsigned long arch_get_unmapped_area_common(struct file *filp, | |||
93 | 93 | ||
94 | vma = find_vma(mm, addr); | 94 | vma = find_vma(mm, addr); |
95 | if (TASK_SIZE - len >= addr && | 95 | if (TASK_SIZE - len >= addr && |
96 | (!vma || addr + len <= vma->vm_start)) | 96 | (!vma || addr + len <= vm_start_gap(vma))) |
97 | return addr; | 97 | return addr; |
98 | } | 98 | } |
99 | 99 | ||