提交 0eee8f9d 编写于 作者: S Sean Christopherson 提交者: Paolo Bonzini

KVM: x86: Use common loop iterator when handling CPUID 0xD.N

Use __do_cpuid_func()'s common loop iterator, "i", when enumerating the
sub-leafs for CPUID 0xD now that the CPUID 0xD loop doesn't need to
manual maintain separate counts for the entries index and CPUID index.

No functional changed intended.
Reviewed-by: NVitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: NSean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 695538aa
......@@ -634,7 +634,6 @@ static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
}
break;
case 0xd: {
int idx;
u64 supported = kvm_supported_xcr0();
entry->eax &= supported;
......@@ -658,11 +657,11 @@ static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
entry->ecx = 0;
entry->edx = 0;
for (idx = 2; idx < 64; ++idx) {
if (!(supported & BIT_ULL(idx)))
for (i = 2; i < 64; ++i) {
if (!(supported & BIT_ULL(i)))
continue;
entry = do_host_cpuid(array, function, idx);
entry = do_host_cpuid(array, function, i);
if (!entry)
goto out;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册