Commit 8b86079c authored by Sean Christopherson's avatar Sean Christopherson Committed by Paolo Bonzini

KVM: x86: Simplify handling of Centaur CPUID leafs

Refactor the handling of the Centaur-only CPUID leaf to detect the leaf
via a runtime query instead of adding a one-off callback in the static
array.  When the callback was introduced, there were additional fields
in the array's structs, and more importantly, retpoline wasn't a thing.

No functional change intended.
Reviewed-by: default avatarVitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: default avatarSean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 619a17f1
...@@ -829,15 +829,7 @@ static int do_cpuid_func(struct kvm_cpuid_entry2 *entry, u32 func, ...@@ -829,15 +829,7 @@ static int do_cpuid_func(struct kvm_cpuid_entry2 *entry, u32 func,
return __do_cpuid_func(entry, func, nent, maxnent); return __do_cpuid_func(entry, func, nent, maxnent);
} }
struct kvm_cpuid_param { #define CENTAUR_CPUID_SIGNATURE 0xC0000000
u32 func;
bool (*qualifier)(const struct kvm_cpuid_param *param);
};
static bool is_centaur_cpu(const struct kvm_cpuid_param *param)
{
return boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR;
}
static int get_cpuid_func(struct kvm_cpuid_entry2 *entries, u32 func, static int get_cpuid_func(struct kvm_cpuid_entry2 *entries, u32 func,
int *nent, int maxnent, unsigned int type) int *nent, int maxnent, unsigned int type)
...@@ -845,6 +837,10 @@ static int get_cpuid_func(struct kvm_cpuid_entry2 *entries, u32 func, ...@@ -845,6 +837,10 @@ static int get_cpuid_func(struct kvm_cpuid_entry2 *entries, u32 func,
u32 limit; u32 limit;
int r; int r;
if (func == CENTAUR_CPUID_SIGNATURE &&
boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR)
return 0;
r = do_cpuid_func(&entries[*nent], func, nent, maxnent, type); r = do_cpuid_func(&entries[*nent], func, nent, maxnent, type);
if (r) if (r)
return r; return r;
...@@ -896,11 +892,8 @@ int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid, ...@@ -896,11 +892,8 @@ int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
struct kvm_cpuid_entry2 *cpuid_entries; struct kvm_cpuid_entry2 *cpuid_entries;
int nent = 0, r = -E2BIG, i; int nent = 0, r = -E2BIG, i;
static const struct kvm_cpuid_param param[] = { static const u32 funcs[] = {
{ .func = 0 }, 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE,
{ .func = 0x80000000 },
{ .func = 0xC0000000, .qualifier = is_centaur_cpu },
{ .func = KVM_CPUID_SIGNATURE },
}; };
if (cpuid->nent < 1) if (cpuid->nent < 1)
...@@ -918,14 +911,9 @@ int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid, ...@@ -918,14 +911,9 @@ int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
goto out; goto out;
r = 0; r = 0;
for (i = 0; i < ARRAY_SIZE(param); i++) { for (i = 0; i < ARRAY_SIZE(funcs); i++) {
const struct kvm_cpuid_param *ent = &param[i]; r = get_cpuid_func(cpuid_entries, funcs[i], &nent, cpuid->nent,
type);
if (ent->qualifier && !ent->qualifier(ent))
continue;
r = get_cpuid_func(cpuid_entries, ent->func, &nent,
cpuid->nent, type);
if (r) if (r)
goto out_free; goto out_free;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment