diff options
Diffstat (limited to 'arch/x86_64/mm')
-rw-r--r-- | arch/x86_64/mm/fault.c | 2 | ||||
-rw-r--r-- | arch/x86_64/mm/init.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/mm/fault.c b/arch/x86_64/mm/fault.c index 55250593d8c9..64728898f869 100644 --- a/arch/x86_64/mm/fault.c +++ b/arch/x86_64/mm/fault.c | |||
@@ -160,7 +160,7 @@ void dump_pagetable(unsigned long address) | |||
160 | printk("PGD %lx ", pgd_val(*pgd)); | 160 | printk("PGD %lx ", pgd_val(*pgd)); |
161 | if (!pgd_present(*pgd)) goto ret; | 161 | if (!pgd_present(*pgd)) goto ret; |
162 | 162 | ||
163 | pud = __pud_offset_k((pud_t *)pgd_page(*pgd), address); | 163 | pud = pud_offset(pgd, address); |
164 | if (bad_address(pud)) goto bad; | 164 | if (bad_address(pud)) goto bad; |
165 | printk("PUD %lx ", pud_val(*pud)); | 165 | printk("PUD %lx ", pud_val(*pud)); |
166 | if (!pud_present(*pud)) goto ret; | 166 | if (!pud_present(*pud)) goto ret; |
diff --git a/arch/x86_64/mm/init.c b/arch/x86_64/mm/init.c index a70a8e3e312d..b83645a2e02d 100644 --- a/arch/x86_64/mm/init.c +++ b/arch/x86_64/mm/init.c | |||
@@ -372,7 +372,7 @@ void __meminit init_memory_mapping(unsigned long start, unsigned long end) | |||
372 | pud_t *pud; | 372 | pud_t *pud; |
373 | 373 | ||
374 | if (after_bootmem) | 374 | if (after_bootmem) |
375 | pud = pud_offset_k(pgd, start & PGDIR_MASK); | 375 | pud = pud_offset(pgd, start & PGDIR_MASK); |
376 | else | 376 | else |
377 | pud = alloc_low_page(&map, &pud_phys); | 377 | pud = alloc_low_page(&map, &pud_phys); |
378 | 378 | ||