mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
x86: add gbpages support to lookup_address
[ tglx@linutronix.de: fix bootup crash on sparse mappings. ] Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
61e19a347a
commit
c2f71ee214
@ -209,6 +209,11 @@ pte_t *lookup_address(unsigned long address, int *level)
|
||||
pud = pud_offset(pgd, address);
|
||||
if (pud_none(*pud))
|
||||
return NULL;
|
||||
|
||||
*level = PG_LEVEL_1G;
|
||||
if (pud_large(*pud) || !pud_present(*pud))
|
||||
return (pte_t *)pud;
|
||||
|
||||
pmd = pmd_offset(pud, address);
|
||||
if (pmd_none(*pmd))
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user