Skip to content

Commit

Permalink
i386: invert hyperv_spinlock_attempts setting logic with hv_passthrough
Browse files Browse the repository at this point in the history
There is no need to have this special case: like all other Hyper-V
enlightenments we can just use kernel's supplied value in hv_passthrough
mode.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20210422161130.652779-3-vkuznets@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
  • Loading branch information
vittyvk authored and ehabkost committed May 31, 2021
1 parent 4519259 commit 0c321f1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions target/i386/kvm/kvm.c
Expand Up @@ -1257,11 +1257,7 @@ static int hyperv_handle_properties(CPUState *cs,
c = cpuid_find_entry(cpuid, HV_CPUID_ENLIGHTMENT_INFO, 0);
if (c) {
env->features[FEAT_HV_RECOMM_EAX] = c->eax;

/* hv-spinlocks may have been overriden */
if (cpu->hyperv_spinlock_attempts != HYPERV_SPINLOCK_NEVER_NOTIFY) {
c->ebx = cpu->hyperv_spinlock_attempts;
}
cpu->hyperv_spinlock_attempts = c->ebx;
}
c = cpuid_find_entry(cpuid, HV_CPUID_NESTED_FEATURES, 0);
if (c) {
Expand Down

0 comments on commit 0c321f1

Please sign in to comment.