x86: use PTE_MASK in 32-bit PAE
Use PTE_MASK in 3-level pagetables (ie, 32-bit PAE). Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Tested-by: Hugh Dickins <hugh@veritas.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c57c05d003
commit
a4d6886270
@@ -120,9 +120,9 @@ static inline void pud_clear(pud_t *pudp)
|
|||||||
write_cr3(pgd);
|
write_cr3(pgd);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define pud_page(pud) ((struct page *) __va(pud_val(pud) & PAGE_MASK))
|
#define pud_page(pud) ((struct page *) __va(pud_val(pud) & PTE_MASK))
|
||||||
|
|
||||||
#define pud_page_vaddr(pud) ((unsigned long) __va(pud_val(pud) & PAGE_MASK))
|
#define pud_page_vaddr(pud) ((unsigned long) __va(pud_val(pud) & PTE_MASK))
|
||||||
|
|
||||||
|
|
||||||
/* Find an entry in the second-level page table.. */
|
/* Find an entry in the second-level page table.. */
|
||||||
@@ -160,7 +160,7 @@ static inline int pte_none(pte_t pte)
|
|||||||
|
|
||||||
static inline unsigned long pte_pfn(pte_t pte)
|
static inline unsigned long pte_pfn(pte_t pte)
|
||||||
{
|
{
|
||||||
return (pte_val(pte) & ~_PAGE_NX) >> PAGE_SHIFT;
|
return (pte_val(pte) & PTE_MASK) >> PAGE_SHIFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user