projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6606174
)
KVM: x86: avoid clearing pending exception event twice
author
Miaohe Lin
<linmiaohe@huawei.com>
Sat, 18 Jan 2020 02:41:55 +0000
(10:41 +0800)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Mon, 27 Jan 2020 18:59:44 +0000
(19:59 +0100)
The exception pending event is cleared by kvm_clear_exception_queue(). We
shouldn't clear it again.
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/x86.c
patch
|
blob
|
history
diff --git
a/arch/x86/kvm/x86.c
b/arch/x86/kvm/x86.c
index 780224e767232c424507c8ad60def2bf3c2f1c27..2b26400a3410b1316d6720fa403f818e70c0ae7d 100644
(file)
--- a/
arch/x86/kvm/x86.c
+++ b/
arch/x86/kvm/x86.c
@@
-9355,7
+9355,6
@@
void kvm_vcpu_reset(struct kvm_vcpu *vcpu, bool init_event)
vcpu->arch.nmi_injected = false;
kvm_clear_interrupt_queue(vcpu);
kvm_clear_exception_queue(vcpu);
- vcpu->arch.exception.pending = false;
memset(vcpu->arch.db, 0, sizeof(vcpu->arch.db));
kvm_update_dr0123(vcpu);