diff options
author | Libin <huawei.libin@huawei.com> | 2013-07-03 18:01:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:26 -0400 |
commit | d6e932177090463e5c709e9e61bbd705a33a1609 (patch) | |
tree | e833b8907a9c07662c5aaaef097a81575ba27653 /mm/memory.c | |
parent | b430e9d1c6d416306d44dbf3aa3148be7af78abc (diff) |
mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
(*->vm_end - *->vm_start) >> PAGE_SHIFT operation is implemented
as a inline funcion vma_pages() in linux/mm.h, so using it.
Signed-off-by: Libin <huawei.libin@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r-- | mm/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c index 95d0cce63583..a101bbcacfd7 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -2904,7 +2904,7 @@ static inline void unmap_mapping_range_tree(struct rb_root *root, | |||
2904 | details->first_index, details->last_index) { | 2904 | details->first_index, details->last_index) { |
2905 | 2905 | ||
2906 | vba = vma->vm_pgoff; | 2906 | vba = vma->vm_pgoff; |
2907 | vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1; | 2907 | vea = vba + vma_pages(vma) - 1; |
2908 | /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */ | 2908 | /* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */ |
2909 | zba = details->first_index; | 2909 | zba = details->first_index; |
2910 | if (zba < vba) | 2910 | if (zba < vba) |