linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT
@ 2013-04-15 12:48 Libin
  2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Libin @ 2013-04-15 12:48 UTC (permalink / raw)
  To: Arnd Bergmann, Greg Kroah-Hartman, David Airlie, Bjorn Helgaas,
	Hans J. Koch, Petr Vandrovec, Andrew Morton
  Cc: Konstantin Khlebnikov, Thomas Hellstrom, Dave Airlie,
	Nadia Yvette Chambers, Jiri Kosina, Al Viro, Mel Gorman,
	Hugh Dickins, Rik van Riel, David Rientjes, Michel Lespinasse,
	linux-kernel, dri-devel, linux-pci, linux-mm, guohanjun,
	wangyijing

(*->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>
---
 mm/memory.c | 2 +-
 mm/mmap.c   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/memory.c b/mm/memory.c
index 13cbc42..8b8ae1c 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2866,7 +2866,7 @@ static inline void unmap_mapping_range_tree(struct rb_root *root,
 			details->first_index, details->last_index) {
 
 		vba = vma->vm_pgoff;
-		vea = vba + ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT) - 1;
+		vea = vba + vma_pages(vma) - 1;
 		/* Assume for now that PAGE_CACHE_SHIFT == PAGE_SHIFT */
 		zba = details->first_index;
 		if (zba < vba)
diff --git a/mm/mmap.c b/mm/mmap.c
index 0db0de1..118bfcb 100644
--- a/mm/mmap.c
+++ b/mm/mmap.c
@@ -919,7 +919,7 @@ can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
 	if (is_mergeable_vma(vma, file, vm_flags) &&
 	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
 		pgoff_t vm_pglen;
-		vm_pglen = (vma->vm_end - vma->vm_start) >> PAGE_SHIFT;
+		vm_pglen = vma_pages(vma);
 		if (vma->vm_pgoff + vm_pglen == vm_pgoff)
 			return 1;
 	}
-- 
1.8.2.1


--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2013-04-18  7:58 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-15 12:48 [PATCH 1/6] mm: use vma_pages() to replace (vm_end - vm_start) >> PAGE_SHIFT Libin
2013-04-15 12:48 ` [PATCH 2/6] PCI: " Libin
2013-04-15 18:09   ` Bjorn Helgaas
2013-04-15 12:48 ` [PATCH 3/6] ncpfs: " Libin
2013-04-15 12:48 ` [PATCH 4/6] char: " Libin
2013-04-16  0:44   ` Xie XiuQi
2013-04-17  7:01   ` David Rientjes
2013-04-15 12:48 ` [PATCH 5/6] drm: " Libin
2013-04-15 12:48 ` [PATCH 6/6] uio: " Libin
2013-04-18  7:58 ` [PATCH 1/6] mm: " Michel Lespinasse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).