Commit bbdaef5f authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] rmap 28 remove_vm_struct

From: Hugh Dickins <hugh@veritas.com>

The callers of remove_shared_vm_struct then proceed to do several more
identical things: gather them together in remove_vm_struct.
parent c8ba2065
...@@ -67,7 +67,7 @@ EXPORT_SYMBOL(vm_committed_space); ...@@ -67,7 +67,7 @@ EXPORT_SYMBOL(vm_committed_space);
/* /*
* Requires inode->i_mapping->i_mmap_lock * Requires inode->i_mapping->i_mmap_lock
*/ */
static inline void __remove_shared_vm_struct(struct vm_area_struct *vma, static void __remove_shared_vm_struct(struct vm_area_struct *vma,
struct file *file, struct address_space *mapping) struct file *file, struct address_space *mapping)
{ {
if (vma->vm_flags & VM_DENYWRITE) if (vma->vm_flags & VM_DENYWRITE)
...@@ -84,9 +84,9 @@ static inline void __remove_shared_vm_struct(struct vm_area_struct *vma, ...@@ -84,9 +84,9 @@ static inline void __remove_shared_vm_struct(struct vm_area_struct *vma,
} }
/* /*
* Remove one vm structure from the inode's i_mapping address space. * Remove one vm structure and free it.
*/ */
static void remove_shared_vm_struct(struct vm_area_struct *vma) static void remove_vm_struct(struct vm_area_struct *vma)
{ {
struct file *file = vma->vm_file; struct file *file = vma->vm_file;
...@@ -96,6 +96,12 @@ static void remove_shared_vm_struct(struct vm_area_struct *vma) ...@@ -96,6 +96,12 @@ static void remove_shared_vm_struct(struct vm_area_struct *vma)
__remove_shared_vm_struct(vma, file, mapping); __remove_shared_vm_struct(vma, file, mapping);
spin_unlock(&mapping->i_mmap_lock); spin_unlock(&mapping->i_mmap_lock);
} }
if (vma->vm_ops && vma->vm_ops->close)
vma->vm_ops->close(vma);
if (file)
fput(file);
mpol_free(vma_policy(vma));
kmem_cache_free(vm_area_cachep, vma);
} }
/* /*
...@@ -1165,14 +1171,7 @@ static void unmap_vma(struct mm_struct *mm, struct vm_area_struct *area) ...@@ -1165,14 +1171,7 @@ static void unmap_vma(struct mm_struct *mm, struct vm_area_struct *area)
area->vm_start < area->vm_mm->free_area_cache) area->vm_start < area->vm_mm->free_area_cache)
area->vm_mm->free_area_cache = area->vm_start; area->vm_mm->free_area_cache = area->vm_start;
remove_shared_vm_struct(area); remove_vm_struct(area);
mpol_free(vma_policy(area));
if (area->vm_ops && area->vm_ops->close)
area->vm_ops->close(area);
if (area->vm_file)
fput(area->vm_file);
kmem_cache_free(vm_area_cachep, area);
} }
/* /*
...@@ -1501,15 +1500,7 @@ void exit_mmap(struct mm_struct *mm) ...@@ -1501,15 +1500,7 @@ void exit_mmap(struct mm_struct *mm)
*/ */
while (vma) { while (vma) {
struct vm_area_struct *next = vma->vm_next; struct vm_area_struct *next = vma->vm_next;
remove_shared_vm_struct(vma); remove_vm_struct(vma);
if (vma->vm_ops) {
if (vma->vm_ops->close)
vma->vm_ops->close(vma);
}
if (vma->vm_file)
fput(vma->vm_file);
mpol_free(vma_policy(vma));
kmem_cache_free(vm_area_cachep, vma);
vma = next; vma = next;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment