patch-2.1.130 linux/mm/mremap.c
Next file: linux/mm/page_alloc.c
Previous file: linux/mm/mprotect.c
Back to the patch index
Back to the overall index
- Lines: 56
- Date:
Sun Nov 22 09:38:19 1998
- Orig file:
v2.1.129/linux/mm/mremap.c
- Orig date:
Wed Jul 1 19:38:57 1998
diff -u --recursive --new-file v2.1.129/linux/mm/mremap.c linux/mm/mremap.c
@@ -4,21 +4,13 @@
* (C) Copyright 1996 Linus Torvalds
*/
-#include <linux/stat.h>
-#include <linux/sched.h>
-#include <linux/kernel.h>
-#include <linux/mm.h>
-#include <linux/smp.h>
+#include <linux/slab.h>
#include <linux/smp_lock.h>
#include <linux/shm.h>
-#include <linux/errno.h>
#include <linux/mman.h>
-#include <linux/string.h>
-#include <linux/slab.h>
#include <linux/swap.h>
#include <asm/uaccess.h>
-#include <asm/system.h>
#include <asm/pgtable.h>
extern int vm_enough_memory(long pages);
@@ -142,7 +134,6 @@
new_vma->vm_start = new_addr;
new_vma->vm_end = new_addr+new_len;
new_vma->vm_offset = vma->vm_offset + (addr - vma->vm_start);
- new_vma->vm_file = vma->vm_file;
if (new_vma->vm_file)
new_vma->vm_file->f_count++;
if (new_vma->vm_ops && new_vma->vm_ops->open)
@@ -151,6 +142,11 @@
merge_segments(current->mm, new_vma->vm_start, new_vma->vm_end);
do_munmap(addr, old_len);
current->mm->total_vm += new_len >> PAGE_SHIFT;
+ if (new_vma->vm_flags & VM_LOCKED) {
+ current->mm->locked_vm += new_len >> PAGE_SHIFT;
+ make_pages_present(new_vma->vm_start,
+ new_vma->vm_end);
+ }
return new_addr;
}
kmem_cache_free(vm_area_cachep, new_vma);
@@ -224,8 +220,11 @@
int pages = (new_len - old_len) >> PAGE_SHIFT;
vma->vm_end = addr + new_len;
current->mm->total_vm += pages;
- if (vma->vm_flags & VM_LOCKED)
+ if (vma->vm_flags & VM_LOCKED) {
current->mm->locked_vm += pages;
+ make_pages_present(addr + old_len,
+ addr + new_len);
+ }
ret = addr;
goto out;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov