Home
last modified time | relevance | path

Searched refs:pmd_flags (Results 1 – 4 of 4) sorted by relevance

/linux-2.6.39/drivers/lguest/
Dpage_tables.c148 BUG_ON(!(pmd_flags(*pmd) & _PAGE_PRESENT)); in spte_addr()
183 BUG_ON(!(pmd_flags(gpmd) & _PAGE_PRESENT)); in gpte_addr()
296 if ((pmd_flags(gpmd) & ~_PAGE_TABLE) || in check_gpmd()
358 if (!(pmd_flags(gpmd) & _PAGE_PRESENT)) in demand_page()
364 if (!(pmd_flags(*spmd) & _PAGE_PRESENT)) { in demand_page()
384 set_pmd(spmd, __pmd(__pa(ptepage) | pmd_flags(gpmd))); in demand_page()
494 if (!(pmd_flags(*spmd) & _PAGE_PRESENT)) in page_writable()
523 if (pmd_flags(*spmd) & _PAGE_PRESENT) { in release_pmd()
625 if (!(pmd_flags(gpmd) & _PAGE_PRESENT)) in guest_pa()
823 if (pmd_flags(*spmd) & _PAGE_PRESENT) { in do_set_pte()
Dlg.h153 #define pmd_flags(x) (pmd_val(x) & ~PAGE_MASK) macro
/linux-2.6.39/arch/x86/include/asm/
Dpgtable.h102 return pmd_flags(pmd) & _PAGE_ACCESSED; in pmd_young()
149 return (pmd_flags(pte) & (_PAGE_PSE | _PAGE_PRESENT)) == in pmd_large()
418 return pmd_flags(pmd) & _PAGE_PRESENT; in pmd_present()
477 return (pmd_flags(pmd) & ~_PAGE_USER) != _KERNPG_TABLE; in pmd_bad()
731 return pmd_flags(pmd) & _PAGE_RW; in pmd_write()
Dpgtable_types.h256 static inline pmdval_t pmd_flags(pmd_t pmd) in pmd_flags() function