]> git.baikalelectronics.ru Git - kernel.git/commit
KVM: nVMX: Always enable TSC scaling for L2 when it was enabled for L1
authorVitaly Kuznetsov <vkuznets@redhat.com>
Tue, 12 Jul 2022 13:50:09 +0000 (15:50 +0200)
committerSean Christopherson <seanjc@google.com>
Tue, 12 Jul 2022 19:06:20 +0000 (12:06 -0700)
commitd2ebd7104efe1d5d704ec50e90a8af5da9fddab4
treec5d2b8d269eac5cfdeb9113cfa4c0701ca5eb8a7
parent2f3547115626b9cf2d5fbc29bdbba463a986809d
KVM: nVMX: Always enable TSC scaling for L2 when it was enabled for L1

Windows 10/11 guests with Hyper-V role (WSL2) enabled are observed to
hang upon boot or shortly after when a non-default TSC frequency was
set for L1. The issue is observed on a host where TSC scaling is
supported. The problem appears to be that Windows doesn't use TSC
scaling for its guests, even when the feature is advertised, and KVM
filters SECONDARY_EXEC_TSC_SCALING out when creating L2 controls from
L1's VMCS. This leads to L2 running with the default frequency (matching
host's) while L1 is running with an altered one.

Keep SECONDARY_EXEC_TSC_SCALING in secondary exec controls for L2 when
it was set for L1. TSC_MULTIPLIER is already correctly computed and
written by prepare_vmcs02().

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Fixes: 9c79b19e8e5ef4 ("KVM: nVMX: Enable nested TSC scaling")
Cc: stable@vger.kernel.org
Reviewed-by: Maxim Levitsky <mlevitsk@redhat.com>
Link: https://lore.kernel.org/r/20220712135009.952805-1-vkuznets@redhat.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
arch/x86/kvm/vmx/nested.c