mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-08 07:38:10 +00:00
lguest: use __PAGE_KERNEL instead of _PAGE_KERNEL
x86_64 don't expose the intermediate representation with one underline, _PAGE_KERNEL, just the double-underlined one. Use it, to get a common ground between 32 and 64-bit Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
ca94f2bdd1
commit
84f12e39c8
1 changed files with 2 additions and 2 deletions
|
@ -646,7 +646,7 @@ void map_switcher_in_guest(struct lg_cpu *cpu, struct lguest_pages *pages)
|
||||||
|
|
||||||
/* Make the last PGD entry for this Guest point to the Switcher's PTE
|
/* Make the last PGD entry for this Guest point to the Switcher's PTE
|
||||||
* page for this CPU (with appropriate flags). */
|
* page for this CPU (with appropriate flags). */
|
||||||
switcher_pgd = __pgd(__pa(switcher_pte_page) | _PAGE_KERNEL);
|
switcher_pgd = __pgd(__pa(switcher_pte_page) | __PAGE_KERNEL);
|
||||||
|
|
||||||
cpu->lg->pgdirs[cpu->cpu_pgd].pgdir[SWITCHER_PGD_INDEX] = switcher_pgd;
|
cpu->lg->pgdirs[cpu->cpu_pgd].pgdir[SWITCHER_PGD_INDEX] = switcher_pgd;
|
||||||
|
|
||||||
|
@ -658,7 +658,7 @@ void map_switcher_in_guest(struct lg_cpu *cpu, struct lguest_pages *pages)
|
||||||
* page is already mapped there, we don't have to copy them out
|
* page is already mapped there, we don't have to copy them out
|
||||||
* again. */
|
* again. */
|
||||||
pfn = __pa(cpu->regs_page) >> PAGE_SHIFT;
|
pfn = __pa(cpu->regs_page) >> PAGE_SHIFT;
|
||||||
regs_pte = pfn_pte(pfn, __pgprot(_PAGE_KERNEL));
|
regs_pte = pfn_pte(pfn, __pgprot(__PAGE_KERNEL));
|
||||||
switcher_pte_page[(unsigned long)pages/PAGE_SIZE%PTRS_PER_PTE] = regs_pte;
|
switcher_pte_page[(unsigned long)pages/PAGE_SIZE%PTRS_PER_PTE] = regs_pte;
|
||||||
}
|
}
|
||||||
/*:*/
|
/*:*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue