aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHuang Shijie <shijie8@gmail.com>2009-12-14 17:58:51 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2009-12-15 08:53:16 -0800
commit273f047e36d83179573dc7e3a8af6aceaa8c599e (patch)
tree0202c5e27f163ceb7b33dc6bd7cddcb87a1e6a46
parentrmap: simplify try_to_unmap_file() (diff)
downloadlinux-dev-273f047e36d83179573dc7e3a8af6aceaa8c599e.tar.xz
linux-dev-273f047e36d83179573dc7e3a8af6aceaa8c599e.zip
rmap: move label `out' to a better place
When the code jumps to the `out', `referenced' is still zero. So there is no need to check it. Signed-off-by: Huang Shijie <shijie8@gmail.com> Acked-by: Wu Fengguang <fengguang.wu@intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/rmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/rmap.c b/mm/rmap.c
index e032d96fd64e..1a0ee6e634c2 100644
--- a/mm/rmap.c
+++ b/mm/rmap.c
@@ -388,9 +388,10 @@ static int page_referenced_one(struct page *page,
out_unmap:
(*mapcount)--;
pte_unmap_unlock(pte, ptl);
-out:
+
if (referenced)
*vm_flags |= vma->vm_flags;
+out:
return referenced;
}