diff options
author | Andy Lutomirski <luto@kernel.org> | 2017-06-12 13:26:14 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-06-13 02:48:09 -0400 |
commit | 6c690ee1039b251e583fc65b28da30e97d6a7385 (patch) | |
tree | 44898545622f632411caf72c54cd3ffd1ff107b3 /arch/x86/mm/ioremap.c | |
parent | 3f365cf304ba3d316b3df2474af8d7df6edd2455 (diff) |
x86/mm: Split read_cr3() into read_cr3_pa() and __read_cr3()
The kernel has several code paths that read CR3. Most of them assume that
CR3 contains the PGD's physical address, whereas some of them awkwardly
use PHYSICAL_PAGE_MASK to mask off low bits.
Add explicit mask macros for CR3 and convert all of the CR3 readers.
This will keep them from breaking when PCID is enabled.
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tom Lendacky <thomas.lendacky@amd.com>
Cc: xen-devel <xen-devel@lists.xen.org>
Link: http://lkml.kernel.org/r/883f8fb121f4616c1c1427ad87350bb2f5ffeca1.1497288170.git.luto@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/mm/ioremap.c')
-rw-r--r-- | arch/x86/mm/ioremap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/ioremap.c b/arch/x86/mm/ioremap.c index bbc558b88a88..4c1b5fd0c7ad 100644 --- a/arch/x86/mm/ioremap.c +++ b/arch/x86/mm/ioremap.c | |||
@@ -424,7 +424,7 @@ static pte_t bm_pte[PAGE_SIZE/sizeof(pte_t)] __page_aligned_bss; | |||
424 | static inline pmd_t * __init early_ioremap_pmd(unsigned long addr) | 424 | static inline pmd_t * __init early_ioremap_pmd(unsigned long addr) |
425 | { | 425 | { |
426 | /* Don't assume we're using swapper_pg_dir at this point */ | 426 | /* Don't assume we're using swapper_pg_dir at this point */ |
427 | pgd_t *base = __va(read_cr3()); | 427 | pgd_t *base = __va(read_cr3_pa()); |
428 | pgd_t *pgd = &base[pgd_index(addr)]; | 428 | pgd_t *pgd = &base[pgd_index(addr)]; |
429 | p4d_t *p4d = p4d_offset(pgd, addr); | 429 | p4d_t *p4d = p4d_offset(pgd, addr); |
430 | pud_t *pud = pud_offset(p4d, addr); | 430 | pud_t *pud = pud_offset(p4d, addr); |