mm: make vm_area_alloc() initialize core fields
Like vm_area_dup(), it initializes the anon_vma_chain head, and the basic mm pointer. The rest of the fields end up being different for different users, although the plan is to also initialize the 'vm_ops' field to a dummy entry. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Dieser Commit ist enthalten in:
12
mm/mmap.c
12
mm/mmap.c
@@ -1729,19 +1729,17 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
|
||||
* specific mapper. the address has already been validated, but
|
||||
* not unmapped, but the maps are removed from the list.
|
||||
*/
|
||||
vma = vm_area_alloc();
|
||||
vma = vm_area_alloc(mm);
|
||||
if (!vma) {
|
||||
error = -ENOMEM;
|
||||
goto unacct_error;
|
||||
}
|
||||
|
||||
vma->vm_mm = mm;
|
||||
vma->vm_start = addr;
|
||||
vma->vm_end = addr + len;
|
||||
vma->vm_flags = vm_flags;
|
||||
vma->vm_page_prot = vm_get_page_prot(vm_flags);
|
||||
vma->vm_pgoff = pgoff;
|
||||
INIT_LIST_HEAD(&vma->anon_vma_chain);
|
||||
|
||||
if (file) {
|
||||
if (vm_flags & VM_DENYWRITE) {
|
||||
@@ -2979,14 +2977,12 @@ static int do_brk_flags(unsigned long addr, unsigned long len, unsigned long fla
|
||||
/*
|
||||
* create a vma struct for an anonymous mapping
|
||||
*/
|
||||
vma = vm_area_alloc();
|
||||
vma = vm_area_alloc(mm);
|
||||
if (!vma) {
|
||||
vm_unacct_memory(len >> PAGE_SHIFT);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
INIT_LIST_HEAD(&vma->anon_vma_chain);
|
||||
vma->vm_mm = mm;
|
||||
vma->vm_start = addr;
|
||||
vma->vm_end = addr + len;
|
||||
vma->vm_pgoff = pgoff;
|
||||
@@ -3343,12 +3339,10 @@ static struct vm_area_struct *__install_special_mapping(
|
||||
int ret;
|
||||
struct vm_area_struct *vma;
|
||||
|
||||
vma = vm_area_alloc();
|
||||
vma = vm_area_alloc(mm);
|
||||
if (unlikely(vma == NULL))
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
INIT_LIST_HEAD(&vma->anon_vma_chain);
|
||||
vma->vm_mm = mm;
|
||||
vma->vm_start = addr;
|
||||
vma->vm_end = addr + len;
|
||||
|
||||
|
@@ -1204,7 +1204,7 @@ unsigned long do_mmap(struct file *file,
|
||||
if (!region)
|
||||
goto error_getting_region;
|
||||
|
||||
vma = vm_area_alloc();
|
||||
vma = vm_area_alloc(current->mm);
|
||||
if (!vma)
|
||||
goto error_getting_vma;
|
||||
|
||||
@@ -1212,7 +1212,6 @@ unsigned long do_mmap(struct file *file,
|
||||
region->vm_flags = vm_flags;
|
||||
region->vm_pgoff = pgoff;
|
||||
|
||||
INIT_LIST_HEAD(&vma->anon_vma_chain);
|
||||
vma->vm_flags = vm_flags;
|
||||
vma->vm_pgoff = pgoff;
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren