diff options
-rw-r--r-- | mm/mmap.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1267,6 +1267,9 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, | |||
1267 | return (mm->free_area_cache = addr-len); | 1267 | return (mm->free_area_cache = addr-len); |
1268 | } | 1268 | } |
1269 | 1269 | ||
1270 | if (mm->mmap_base < len) | ||
1271 | goto bottomup; | ||
1272 | |||
1270 | addr = mm->mmap_base-len; | 1273 | addr = mm->mmap_base-len; |
1271 | 1274 | ||
1272 | do { | 1275 | do { |
@@ -1288,6 +1291,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0, | |||
1288 | addr = vma->vm_start-len; | 1291 | addr = vma->vm_start-len; |
1289 | } while (len < vma->vm_start); | 1292 | } while (len < vma->vm_start); |
1290 | 1293 | ||
1294 | bottomup: | ||
1291 | /* | 1295 | /* |
1292 | * A failed mmap() very likely causes application failure, | 1296 | * A failed mmap() very likely causes application failure, |
1293 | * so fall back to the bottom-up function here. This scenario | 1297 | * so fall back to the bottom-up function here. This scenario |