2 #include <linux/highmem.h>
3 #include <linux/sched.h>
4 #include <linux/hugetlb.h>
6 static int walk_pte_range(pmd_t
*pmd
, unsigned long addr
, unsigned long end
,
12 pte
= pte_offset_map(pmd
, addr
);
14 err
= walk
->pte_entry(pte
, addr
, addr
+ PAGE_SIZE
, walk
);
27 static int walk_pmd_range(pud_t
*pud
, unsigned long addr
, unsigned long end
,
34 pmd
= pmd_offset(pud
, addr
);
36 next
= pmd_addr_end(addr
, end
);
37 if (pmd_none_or_clear_bad(pmd
)) {
39 err
= walk
->pte_hole(addr
, next
, walk
);
45 err
= walk
->pmd_entry(pmd
, addr
, next
, walk
);
46 if (!err
&& walk
->pte_entry
)
47 err
= walk_pte_range(pmd
, addr
, next
, walk
);
50 } while (pmd
++, addr
= next
, addr
!= end
);
55 static int walk_pud_range(pgd_t
*pgd
, unsigned long addr
, unsigned long end
,
62 pud
= pud_offset(pgd
, addr
);
64 next
= pud_addr_end(addr
, end
);
65 if (pud_none_or_clear_bad(pud
)) {
67 err
= walk
->pte_hole(addr
, next
, walk
);
73 err
= walk
->pud_entry(pud
, addr
, next
, walk
);
74 if (!err
&& (walk
->pmd_entry
|| walk
->pte_entry
))
75 err
= walk_pmd_range(pud
, addr
, next
, walk
);
78 } while (pud
++, addr
= next
, addr
!= end
);
84 * walk_page_range - walk a memory map's page tables with a callback
85 * @mm: memory map to walk
86 * @addr: starting address
87 * @end: ending address
88 * @walk: set of callbacks to invoke for each level of the tree
90 * Recursively walk the page table for the memory area in a VMA,
91 * calling supplied callbacks. Callbacks are called in-order (first
92 * PGD, first PUD, first PMD, first PTE, second PTE... second PMD,
93 * etc.). If lower-level callbacks are omitted, walking depth is reduced.
95 * Each callback receives an entry pointer and the start and end of the
96 * associated range, and a copy of the original mm_walk for access to
97 * the ->private or ->mm fields.
99 * No locks are taken, but the bottom level iterator will map PTE
100 * directories from highmem if necessary.
102 * If any callback returns a non-zero value, the walk is aborted and
103 * the return value is propagated back to the caller. Otherwise 0 is returned.
105 int walk_page_range(unsigned long addr
, unsigned long end
,
106 struct mm_walk
*walk
)
111 struct vm_area_struct
*vma
;
119 pgd
= pgd_offset(walk
->mm
, addr
);
121 next
= pgd_addr_end(addr
, end
);
124 * handle hugetlb vma individually because pagetable walk for
125 * the hugetlb page is dependent on the architecture and
126 * we can't handled it in the same manner as non-huge pages.
128 vma
= find_vma(walk
->mm
, addr
);
129 #ifdef CONFIG_HUGETLB_PAGE
130 if (vma
&& is_vm_hugetlb_page(vma
)) {
134 if (vma
->vm_end
< next
)
136 hs
= hstate_vma(vma
);
137 pte
= huge_pte_offset(walk
->mm
,
138 addr
& huge_page_mask(hs
));
139 if (pte
&& !huge_pte_none(huge_ptep_get(pte
))
140 && walk
->hugetlb_entry
)
141 err
= walk
->hugetlb_entry(pte
, addr
,
148 if (pgd_none_or_clear_bad(pgd
)) {
150 err
= walk
->pte_hole(addr
, next
, walk
);
157 err
= walk
->pgd_entry(pgd
, addr
, next
, walk
);
159 (walk
->pud_entry
|| walk
->pmd_entry
|| walk
->pte_entry
))
160 err
= walk_pud_range(pgd
, addr
, next
, walk
);
164 } while (addr
= next
, addr
!= end
);