diff options
author | Gleb Natapov <gleb@redhat.com> | 2010-04-15 14:03:50 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-05-17 05:17:55 -0400 |
commit | acb5451789f21ad51215897bb8f9306a05e8acd4 (patch) | |
tree | 7ab1d73a9b4fbbc82a5a2a98dda701a81c4eaf33 /arch/x86/kvm/svm.c | |
parent | 6b18493d60e7f54a0feb771fa141b5fcb72ce1e4 (diff) |
KVM: prevent spurious exit to userspace during task switch emulation.
If kvm_task_switch() fails code exits to userspace without specifying
exit reason, so the previous exit reason is reused by userspace. Fix
this by specifying exit reason correctly.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 78af52222fd2..ab78eb8ba899 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c | |||
@@ -2266,8 +2266,14 @@ static int task_switch_interception(struct vcpu_svm *svm) | |||
2266 | (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) | 2266 | (int_vec == OF_VECTOR || int_vec == BP_VECTOR))) |
2267 | skip_emulated_instruction(&svm->vcpu); | 2267 | skip_emulated_instruction(&svm->vcpu); |
2268 | 2268 | ||
2269 | return kvm_task_switch(&svm->vcpu, tss_selector, reason, | 2269 | if (kvm_task_switch(&svm->vcpu, tss_selector, reason, |
2270 | has_error_code, error_code); | 2270 | has_error_code, error_code) == EMULATE_FAIL) { |
2271 | svm->vcpu.run->exit_reason = KVM_EXIT_INTERNAL_ERROR; | ||
2272 | svm->vcpu.run->internal.suberror = KVM_INTERNAL_ERROR_EMULATION; | ||
2273 | svm->vcpu.run->internal.ndata = 0; | ||
2274 | return 0; | ||
2275 | } | ||
2276 | return 1; | ||
2271 | } | 2277 | } |
2272 | 2278 | ||
2273 | static int cpuid_interception(struct vcpu_svm *svm) | 2279 | static int cpuid_interception(struct vcpu_svm *svm) |