swapin_walk_pmd_entry() is defined as pmd_entry(), but it has no code
about pmd handling (except pmd_none_or_trans_huge_or_clear_bad, but the
same check are now done in core page table walk code).
So let's move this function on pte_entry() as swapin_walk_pte_entry().

Signed-off-by: Naoya Horiguchi <n-horigu...@ah.jp.nec.com>
---
 mm/madvise.c | 43 +++++++++++++------------------------------
 1 file changed, 13 insertions(+), 30 deletions(-)

diff --git v3.12-rc7-mmots-2013-10-29-16-24.orig/mm/madvise.c 
v3.12-rc7-mmots-2013-10-29-16-24/mm/madvise.c
index 6970248..722fe1d 100644
--- v3.12-rc7-mmots-2013-10-29-16-24.orig/mm/madvise.c
+++ v3.12-rc7-mmots-2013-10-29-16-24/mm/madvise.c
@@ -109,38 +109,22 @@ static int madvise_vma_anon_name(struct vm_area_struct 
*vma,
 }
 
 #ifdef CONFIG_SWAP
-static int swapin_walk_pmd_entry(pmd_t *pmd, unsigned long start,
+static int swapin_walk_pte_entry(pte_t *pte, unsigned long start,
        unsigned long end, struct mm_walk *walk)
 {
-       pte_t *orig_pte;
-       struct vm_area_struct *vma = walk->private;
-       unsigned long index;
+       swp_entry_t entry;
+       struct page *page;
+       struct vm_area_struct *vma = walk->vma;
 
-       if (pmd_none_or_trans_huge_or_clear_bad(pmd))
+       if (pte_present(*pte) || pte_none(*pte) || pte_file(*pte))
                return 0;
-
-       for (index = start; index != end; index += PAGE_SIZE) {
-               pte_t pte;
-               swp_entry_t entry;
-               struct page *page;
-               spinlock_t *ptl;
-
-               orig_pte = pte_offset_map_lock(vma->vm_mm, pmd, start, &ptl);
-               pte = *(orig_pte + ((index - start) / PAGE_SIZE));
-               pte_unmap_unlock(orig_pte, ptl);
-
-               if (pte_present(pte) || pte_none(pte) || pte_file(pte))
-                       continue;
-               entry = pte_to_swp_entry(pte);
-               if (unlikely(non_swap_entry(entry)))
-                       continue;
-
-               page = read_swap_cache_async(entry, GFP_HIGHUSER_MOVABLE,
-                                                               vma, index);
-               if (page)
-                       page_cache_release(page);
-       }
-
+       entry = pte_to_swp_entry(*pte);
+       if (unlikely(non_swap_entry(entry)))
+               return 0;
+       page = read_swap_cache_async(entry, GFP_HIGHUSER_MOVABLE,
+                                    vma, start);
+       if (page)
+               page_cache_release(page);
        return 0;
 }
 
@@ -149,8 +133,7 @@ static void force_swapin_readahead(struct vm_area_struct 
*vma,
 {
        struct mm_walk walk = {
                .mm = vma->vm_mm,
-               .pmd_entry = swapin_walk_pmd_entry,
-               .private = vma,
+               .pte_entry = swapin_walk_pte_entry,
        };
 
        walk_page_range(start, end, &walk);
-- 
1.8.3.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to