diff options
author | 2020-05-19 09:21:04 -0400 | |
---|---|---|
committer | 2020-06-01 04:26:02 -0400 | |
commit | 08245e6d2e589f2b6e9e275ddb343e2ec9ce94ec (patch) | |
tree | 727d12ad66b1a0202794878a4002017b789215f3 /arch/x86/kvm/svm/nested.c | |
parent | KVM: nSVM: remove HF_VINTR_MASK (diff) | |
download | wireguard-linux-08245e6d2e589f2b6e9e275ddb343e2ec9ce94ec.tar.xz wireguard-linux-08245e6d2e589f2b6e9e275ddb343e2ec9ce94ec.zip |
KVM: nSVM: remove HF_HIF_MASK
The L1 flags can be found in the save area of svm->nested.hsave, fish
it from there so that there is one fewer thing to migrate.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | arch/x86/kvm/svm/nested.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/kvm/svm/nested.c b/arch/x86/kvm/svm/nested.c index 6967fe884eaf..65ecc8586f75 100644 --- a/arch/x86/kvm/svm/nested.c +++ b/arch/x86/kvm/svm/nested.c @@ -371,11 +371,6 @@ void enter_svm_guest_mode(struct vcpu_svm *svm, u64 vmcb_gpa, struct vmcb *nested_vmcb) { svm->nested.vmcb = vmcb_gpa; - if (kvm_get_rflags(&svm->vcpu) & X86_EFLAGS_IF) - svm->vcpu.arch.hflags |= HF_HIF_MASK; - else - svm->vcpu.arch.hflags &= ~HF_HIF_MASK; - load_nested_vmcb_control(svm, &nested_vmcb->control); nested_prepare_vmcb_save(svm, nested_vmcb); nested_prepare_vmcb_control(svm); |