aboutsummaryrefslogtreecommitdiffstats
path: root/mm/nommu.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/nommu.c')
-rw-r--r--mm/nommu.c50
1 files changed, 21 insertions, 29 deletions
diff --git a/mm/nommu.c b/mm/nommu.c
index 56a446f05971..9876fa0c3ad3 100644
--- a/mm/nommu.c
+++ b/mm/nommu.c
@@ -79,7 +79,7 @@ static struct kmem_cache *vm_region_jar;
79struct rb_root nommu_region_tree = RB_ROOT; 79struct rb_root nommu_region_tree = RB_ROOT;
80DECLARE_RWSEM(nommu_region_sem); 80DECLARE_RWSEM(nommu_region_sem);
81 81
82struct vm_operations_struct generic_file_vm_ops = { 82const struct vm_operations_struct generic_file_vm_ops = {
83}; 83};
84 84
85/* 85/*
@@ -826,7 +826,7 @@ static int validate_mmap_request(struct file *file,
826 int ret; 826 int ret;
827 827
828 /* do the simple checks first */ 828 /* do the simple checks first */
829 if (flags & MAP_FIXED || addr) { 829 if (flags & MAP_FIXED) {
830 printk(KERN_DEBUG 830 printk(KERN_DEBUG
831 "%d: Can't do fixed-address/overlay mmap of RAM\n", 831 "%d: Can't do fixed-address/overlay mmap of RAM\n",
832 current->pid); 832 current->pid);
@@ -1034,7 +1034,7 @@ static int do_mmap_shared_file(struct vm_area_struct *vma)
1034 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma); 1034 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
1035 if (ret == 0) { 1035 if (ret == 0) {
1036 vma->vm_region->vm_top = vma->vm_region->vm_end; 1036 vma->vm_region->vm_top = vma->vm_region->vm_end;
1037 return ret; 1037 return 0;
1038 } 1038 }
1039 if (ret != -ENOSYS) 1039 if (ret != -ENOSYS)
1040 return ret; 1040 return ret;
@@ -1051,7 +1051,8 @@ static int do_mmap_shared_file(struct vm_area_struct *vma)
1051 */ 1051 */
1052static int do_mmap_private(struct vm_area_struct *vma, 1052static int do_mmap_private(struct vm_area_struct *vma,
1053 struct vm_region *region, 1053 struct vm_region *region,
1054 unsigned long len) 1054 unsigned long len,
1055 unsigned long capabilities)
1055{ 1056{
1056 struct page *pages; 1057 struct page *pages;
1057 unsigned long total, point, n, rlen; 1058 unsigned long total, point, n, rlen;
@@ -1062,13 +1063,13 @@ static int do_mmap_private(struct vm_area_struct *vma,
1062 * shared mappings on devices or memory 1063 * shared mappings on devices or memory
1063 * - VM_MAYSHARE will be set if it may attempt to share 1064 * - VM_MAYSHARE will be set if it may attempt to share
1064 */ 1065 */
1065 if (vma->vm_file) { 1066 if (capabilities & BDI_CAP_MAP_DIRECT) {
1066 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma); 1067 ret = vma->vm_file->f_op->mmap(vma->vm_file, vma);
1067 if (ret == 0) { 1068 if (ret == 0) {
1068 /* shouldn't return success if we're not sharing */ 1069 /* shouldn't return success if we're not sharing */
1069 BUG_ON(!(vma->vm_flags & VM_MAYSHARE)); 1070 BUG_ON(!(vma->vm_flags & VM_MAYSHARE));
1070 vma->vm_region->vm_top = vma->vm_region->vm_end; 1071 vma->vm_region->vm_top = vma->vm_region->vm_end;
1071 return ret; 1072 return 0;
1072 } 1073 }
1073 if (ret != -ENOSYS) 1074 if (ret != -ENOSYS)
1074 return ret; 1075 return ret;
@@ -1181,9 +1182,6 @@ unsigned long do_mmap_pgoff(struct file *file,
1181 1182
1182 kenter(",%lx,%lx,%lx,%lx,%lx", addr, len, prot, flags, pgoff); 1183 kenter(",%lx,%lx,%lx,%lx,%lx", addr, len, prot, flags, pgoff);
1183 1184
1184 if (!(flags & MAP_FIXED))
1185 addr = round_hint_to_min(addr);
1186
1187 /* decide whether we should attempt the mapping, and if so what sort of 1185 /* decide whether we should attempt the mapping, and if so what sort of
1188 * mapping */ 1186 * mapping */
1189 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff, 1187 ret = validate_mmap_request(file, addr, len, prot, flags, pgoff,
@@ -1193,6 +1191,9 @@ unsigned long do_mmap_pgoff(struct file *file,
1193 return ret; 1191 return ret;
1194 } 1192 }
1195 1193
1194 /* we ignore the address hint */
1195 addr = 0;
1196
1196 /* we've determined that we can make the mapping, now translate what we 1197 /* we've determined that we can make the mapping, now translate what we
1197 * now know into VMA flags */ 1198 * now know into VMA flags */
1198 vm_flags = determine_vm_flags(file, prot, flags, capabilities); 1199 vm_flags = determine_vm_flags(file, prot, flags, capabilities);
@@ -1306,7 +1307,7 @@ unsigned long do_mmap_pgoff(struct file *file,
1306 * - this is the hook for quasi-memory character devices to 1307 * - this is the hook for quasi-memory character devices to
1307 * tell us the location of a shared mapping 1308 * tell us the location of a shared mapping
1308 */ 1309 */
1309 if (file && file->f_op->get_unmapped_area) { 1310 if (capabilities & BDI_CAP_MAP_DIRECT) {
1310 addr = file->f_op->get_unmapped_area(file, addr, len, 1311 addr = file->f_op->get_unmapped_area(file, addr, len,
1311 pgoff, flags); 1312 pgoff, flags);
1312 if (IS_ERR((void *) addr)) { 1313 if (IS_ERR((void *) addr)) {
@@ -1330,15 +1331,17 @@ unsigned long do_mmap_pgoff(struct file *file,
1330 } 1331 }
1331 1332
1332 vma->vm_region = region; 1333 vma->vm_region = region;
1333 add_nommu_region(region);
1334 1334
1335 /* set up the mapping */ 1335 /* set up the mapping
1336 * - the region is filled in if BDI_CAP_MAP_DIRECT is still set
1337 */
1336 if (file && vma->vm_flags & VM_SHARED) 1338 if (file && vma->vm_flags & VM_SHARED)
1337 ret = do_mmap_shared_file(vma); 1339 ret = do_mmap_shared_file(vma);
1338 else 1340 else
1339 ret = do_mmap_private(vma, region, len); 1341 ret = do_mmap_private(vma, region, len, capabilities);
1340 if (ret < 0) 1342 if (ret < 0)
1341 goto error_put_region; 1343 goto error_just_free;
1344 add_nommu_region(region);
1342 1345
1343 /* okay... we have a mapping; now we have to register it */ 1346 /* okay... we have a mapping; now we have to register it */
1344 result = vma->vm_start; 1347 result = vma->vm_start;
@@ -1356,25 +1359,14 @@ share:
1356 kleave(" = %lx", result); 1359 kleave(" = %lx", result);
1357 return result; 1360 return result;
1358 1361
1359error_put_region:
1360 __put_nommu_region(region);
1361 if (vma) {
1362 if (vma->vm_file) {
1363 fput(vma->vm_file);
1364 if (vma->vm_flags & VM_EXECUTABLE)
1365 removed_exe_file_vma(vma->vm_mm);
1366 }
1367 kmem_cache_free(vm_area_cachep, vma);
1368 }
1369 kleave(" = %d [pr]", ret);
1370 return ret;
1371
1372error_just_free: 1362error_just_free:
1373 up_write(&nommu_region_sem); 1363 up_write(&nommu_region_sem);
1374error: 1364error:
1375 fput(region->vm_file); 1365 if (region->vm_file)
1366 fput(region->vm_file);
1376 kmem_cache_free(vm_region_jar, region); 1367 kmem_cache_free(vm_region_jar, region);
1377 fput(vma->vm_file); 1368 if (vma->vm_file)
1369 fput(vma->vm_file);
1378 if (vma->vm_flags & VM_EXECUTABLE) 1370 if (vma->vm_flags & VM_EXECUTABLE)
1379 removed_exe_file_vma(vma->vm_mm); 1371 removed_exe_file_vma(vma->vm_mm);
1380 kmem_cache_free(vm_area_cachep, vma); 1372 kmem_cache_free(vm_area_cachep, vma);