Skip to content

Commit

Permalink
NOMMU: Don't need to clear vm_mm when deleting a VMA
Browse files Browse the repository at this point in the history
Don't clear vm_mm in a deleted VMA as it's unnecessary and might
conceivably break the filesystem or driver VMA close routine.

Reported-by: Al Viro <[email protected]>
Signed-off-by: David Howells <[email protected]>
Acked-by: Al Viro <[email protected]>
cc: [email protected]
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
dhowells authored and torvalds committed Feb 24, 2012
1 parent 918e556 commit b94cfaf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions mm/nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -779,8 +779,6 @@ static void delete_vma_from_mm(struct vm_area_struct *vma)

if (vma->vm_next)
vma->vm_next->vm_prev = vma->vm_prev;

vma->vm_mm = NULL;
}

/*
Expand Down

0 comments on commit b94cfaf

Please sign in to comment.