diff options
-rw-r--r-- | arch/x86/include/asm/pgtable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index af5481e94863..9de8729c1c8f 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h | |||
@@ -356,7 +356,7 @@ static inline unsigned long pmd_page_vaddr(pmd_t pmd) | |||
356 | * this macro returns the index of the entry in the pmd page which would | 356 | * this macro returns the index of the entry in the pmd page which would |
357 | * control the given virtual address | 357 | * control the given virtual address |
358 | */ | 358 | */ |
359 | static inline unsigned pmd_index(unsigned long address) | 359 | static inline unsigned long pmd_index(unsigned long address) |
360 | { | 360 | { |
361 | return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1); | 361 | return (address >> PMD_SHIFT) & (PTRS_PER_PMD - 1); |
362 | } | 362 | } |
@@ -376,7 +376,7 @@ static inline unsigned pmd_index(unsigned long address) | |||
376 | * this function returns the index of the entry in the pte page which would | 376 | * this function returns the index of the entry in the pte page which would |
377 | * control the given virtual address | 377 | * control the given virtual address |
378 | */ | 378 | */ |
379 | static inline unsigned pte_index(unsigned long address) | 379 | static inline unsigned long pte_index(unsigned long address) |
380 | { | 380 | { |
381 | return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1); | 381 | return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1); |
382 | } | 382 | } |
@@ -462,7 +462,7 @@ static inline unsigned long pgd_page_vaddr(pgd_t pgd) | |||
462 | #define pgd_page(pgd) pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT) | 462 | #define pgd_page(pgd) pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT) |
463 | 463 | ||
464 | /* to find an entry in a page-table-directory. */ | 464 | /* to find an entry in a page-table-directory. */ |
465 | static inline unsigned pud_index(unsigned long address) | 465 | static inline unsigned long pud_index(unsigned long address) |
466 | { | 466 | { |
467 | return (address >> PUD_SHIFT) & (PTRS_PER_PUD - 1); | 467 | return (address >> PUD_SHIFT) & (PTRS_PER_PUD - 1); |
468 | } | 468 | } |