aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm
diff options
context:
space:
mode:
authorJoerg Roedel <joerg.roedel@amd.com>2010-09-10 11:30:43 -0400
committerAvi Kivity <avi@redhat.com>2010-10-24 04:52:31 -0400
commitcb659db8a7d1ed558898f533a957dfc342f9499d (patch)
tree706528d7eb311f956cadcc50e666012ef59d8ada /arch/x86/kvm
parent5777ed340d89cdc6c76a5c552337a3861b40a806 (diff)
KVM: MMU: Introduce inject_page_fault function pointer
This patch introduces an inject_page_fault function pointer into struct kvm_mmu which will be used to inject a page fault. This will be used later when Nested Nested Paging is implemented. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r--arch/x86/kvm/mmu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c
index e4a7de4c8c77..a751dfc8526d 100644
--- a/arch/x86/kvm/mmu.c
+++ b/arch/x86/kvm/mmu.c
@@ -2571,7 +2571,7 @@ static void inject_page_fault(struct kvm_vcpu *vcpu,
2571 u64 addr, 2571 u64 addr,
2572 u32 err_code) 2572 u32 err_code)
2573{ 2573{
2574 kvm_inject_page_fault(vcpu, addr, err_code); 2574 vcpu->arch.mmu.inject_page_fault(vcpu, addr, err_code);
2575} 2575}
2576 2576
2577static void paging_free(struct kvm_vcpu *vcpu) 2577static void paging_free(struct kvm_vcpu *vcpu)
@@ -2721,6 +2721,7 @@ static int init_kvm_tdp_mmu(struct kvm_vcpu *vcpu)
2721 context->direct_map = true; 2721 context->direct_map = true;
2722 context->set_cr3 = kvm_x86_ops->set_tdp_cr3; 2722 context->set_cr3 = kvm_x86_ops->set_tdp_cr3;
2723 context->get_cr3 = get_cr3; 2723 context->get_cr3 = get_cr3;
2724 context->inject_page_fault = kvm_inject_page_fault;
2724 2725
2725 if (!is_paging(vcpu)) { 2726 if (!is_paging(vcpu)) {
2726 context->gva_to_gpa = nonpaging_gva_to_gpa; 2727 context->gva_to_gpa = nonpaging_gva_to_gpa;
@@ -2762,6 +2763,7 @@ static int init_kvm_softmmu(struct kvm_vcpu *vcpu)
2762 vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu); 2763 vcpu->arch.mmu.base_role.cr0_wp = is_write_protection(vcpu);
2763 vcpu->arch.mmu.set_cr3 = kvm_x86_ops->set_cr3; 2764 vcpu->arch.mmu.set_cr3 = kvm_x86_ops->set_cr3;
2764 vcpu->arch.mmu.get_cr3 = get_cr3; 2765 vcpu->arch.mmu.get_cr3 = get_cr3;
2766 vcpu->arch.mmu.inject_page_fault = kvm_inject_page_fault;
2765 2767
2766 return r; 2768 return r;
2767} 2769}