Skip to content

Commit

Permalink
x86: don't set pagetable_setup_{start,done} hooks on 64-bit
Browse files Browse the repository at this point in the history
paravirt_pagetable_setup_{start,done}() are not used (yet) under x86_64,
and native_pagetable_setup_{start,done}() don't exist on x86_64. So they
don't need to be set.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Eduardo Habkost authored and Ingo Molnar committed Jan 30, 2008
1 parent 9042219 commit d8dd8ee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/x86/kernel/paravirt.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,10 @@ struct pv_apic_ops pv_apic_ops = {
};

struct pv_mmu_ops pv_mmu_ops = {
#ifndef CONFIG_X86_64
.pagetable_setup_start = native_pagetable_setup_start,
.pagetable_setup_done = native_pagetable_setup_done,
#endif

.read_cr2 = native_read_cr2,
.write_cr2 = native_write_cr2,
Expand Down

0 comments on commit d8dd8ee

Please sign in to comment.