Lines Matching refs:ptent
938 pte_t ptent = *pte; in clear_soft_dirty() local
940 if (pte_present(ptent)) { in clear_soft_dirty()
941 ptent = ptep_modify_prot_start(vma->vm_mm, addr, pte); in clear_soft_dirty()
942 ptent = pte_wrprotect(ptent); in clear_soft_dirty()
943 ptent = pte_clear_soft_dirty(ptent); in clear_soft_dirty()
944 ptep_modify_prot_commit(vma->vm_mm, addr, pte, ptent); in clear_soft_dirty()
945 } else if (is_swap_pte(ptent)) { in clear_soft_dirty()
946 ptent = pte_swp_clear_soft_dirty(ptent); in clear_soft_dirty()
947 set_pte_at(vma->vm_mm, addr, pte, ptent); in clear_soft_dirty()
992 pte_t *pte, ptent; in clear_refs_pte_range() local
1022 ptent = *pte; in clear_refs_pte_range()
1029 if (!pte_present(ptent)) in clear_refs_pte_range()
1032 page = vm_normal_page(vma, addr, ptent); in clear_refs_pte_range()