i386/PAE: fix pud_page()

Impact: cleanup

To the unsuspecting user it is quite annoying that this broken and
inconsistent with x86-64 definition still exists.

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by Jan Beulich and committed by Ingo Molnar ab00fee3 fe8b868e

+2 -2
+2 -2
arch/x86/include/asm/pgtable-3level.h
··· 120 120 write_cr3(pgd); 121 121 } 122 122 123 - #define pud_page(pud) ((struct page *) __va(pud_val(pud) & PTE_PFN_MASK)) 123 + #define pud_page(pud) pfn_to_page(pud_val(pud) >> PAGE_SHIFT) 124 124 125 125 #define pud_page_vaddr(pud) ((unsigned long) __va(pud_val(pud) & PTE_PFN_MASK)) 126 126 127 127 128 128 /* Find an entry in the second-level page table.. */ 129 - #define pmd_offset(pud, address) ((pmd_t *)pud_page(*(pud)) + \ 129 + #define pmd_offset(pud, address) ((pmd_t *)pud_page_vaddr(*(pud)) + \ 130 130 pmd_index(address)) 131 131 132 132 #ifdef CONFIG_SMP