aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/svm.c
diff options
context:
space:
mode:
authorGleb Natapov <gleb@redhat.com>2009-05-11 06:35:49 -0400
committerAvi Kivity <avi@redhat.com>2009-06-10 04:48:58 -0400
commitf629cf8485c9e1063fd8b915fa3bde80917400a1 (patch)
tree1d50f714c589de5b3971f463484ec4fbae38b81d /arch/x86/kvm/svm.c
parent923c61bbc6413e87e5f6b0bae663d202a8de0537 (diff)
KVM: skip_emulated_instruction() decode instruction if size is not known
Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r--arch/x86/kvm/svm.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
index ac3d5ba48d61..1315ce025e57 100644
--- a/arch/x86/kvm/svm.c
+++ b/arch/x86/kvm/svm.c
@@ -228,7 +228,9 @@ static void skip_emulated_instruction(struct kvm_vcpu *vcpu)
228 struct vcpu_svm *svm = to_svm(vcpu); 228 struct vcpu_svm *svm = to_svm(vcpu);
229 229
230 if (!svm->next_rip) { 230 if (!svm->next_rip) {
231 printk(KERN_DEBUG "%s: NOP\n", __func__); 231 if (emulate_instruction(vcpu, vcpu->run, 0, 0, EMULTYPE_SKIP) !=
232 EMULATE_DONE)
233 printk(KERN_DEBUG "%s: NOP\n", __func__);
232 return; 234 return;
233 } 235 }
234 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE) 236 if (svm->next_rip - kvm_rip_read(vcpu) > MAX_INST_SIZE)
@@ -1868,11 +1870,8 @@ static int task_switch_interception(struct vcpu_svm *svm,
1868 if (reason != TASK_SWITCH_GATE || 1870 if (reason != TASK_SWITCH_GATE ||
1869 int_type == SVM_EXITINTINFO_TYPE_SOFT || 1871 int_type == SVM_EXITINTINFO_TYPE_SOFT ||
1870 (int_type == SVM_EXITINTINFO_TYPE_EXEPT && 1872 (int_type == SVM_EXITINTINFO_TYPE_EXEPT &&
1871 (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) { 1873 (int_vec == OF_VECTOR || int_vec == BP_VECTOR)))
1872 if (emulate_instruction(&svm->vcpu, kvm_run, 0, 0, 1874 skip_emulated_instruction(&svm->vcpu);
1873 EMULTYPE_SKIP) != EMULATE_DONE)
1874 return 0;
1875 }
1876 1875
1877 return kvm_task_switch(&svm->vcpu, tss_selector, reason); 1876 return kvm_task_switch(&svm->vcpu, tss_selector, reason);
1878} 1877}