Lines Matching refs:best
227 struct kvm_cpuid_entry2 *best;
229 best = kvm_find_cpuid_entry(vcpu, 0, 0);
230 return best &&
231 (is_guest_vendor_amd(best->ebx, best->ecx, best->edx) ||
232 is_guest_vendor_hygon(best->ebx, best->ecx, best->edx));
237 struct kvm_cpuid_entry2 *best;
239 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
240 if (!best)
243 return x86_family(best->eax);
248 struct kvm_cpuid_entry2 *best;
250 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
251 if (!best)
254 return x86_model(best->eax);
259 struct kvm_cpuid_entry2 *best;
261 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
262 if (!best)
265 return x86_stepping(best->eax);