Skip to content

Commit

Permalink
x86: use PTE_MASK in 32-bit PAE
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeremy Fitzhardinge authored and Linus Torvalds committed May 20, 2008
1 parent c57c05d commit a4d6886
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/asm-x86/pgtable-3level.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ static inline void pud_clear(pud_t *pudp)
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.. */
Expand Down Expand Up @@ -160,7 +160,7 @@ static inline int pte_none(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;
}

/*
Expand Down

0 comments on commit a4d6886

Please sign in to comment.