From: Hillf Danton Date: Wed, 20 Mar 2013 04:07:08 +0000 (+1100) Subject: rmap: recompute pgoff for unmapping huge page X-Git-Tag: next-20130321~2^2~385 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cc3481a95ccec5592978897ee141b295052649e2;p=karo-tx-linux.git rmap: recompute pgoff for unmapping huge page We have to recompute pgoff if the given page is huge, since result based on HPAGE_SIZE is not approapriate for scanning the vma interval tree, as shown by commit 36e4f20af833 ("hugetlb: do not use vma_hugecache_offset() for vma_prio_tree_foreach"). Signed-off-by: Hillf Danton Cc: Michal Hocko Cc: Michel Lespinasse Signed-off-by: Andrew Morton --- diff --git a/mm/rmap.c b/mm/rmap.c index 807c96bf0dc6..6280da86b5d6 100644 --- a/mm/rmap.c +++ b/mm/rmap.c @@ -1513,6 +1513,9 @@ static int try_to_unmap_file(struct page *page, enum ttu_flags flags) unsigned long max_nl_size = 0; unsigned int mapcount; + if (PageHuge(page)) + pgoff = page->index << compound_order(page); + mutex_lock(&mapping->i_mmap_mutex); vma_interval_tree_foreach(vma, &mapping->i_mmap, pgoff, pgoff) { unsigned long address = vma_address(page, vma);