Re: [PATCH 2/2] KVM: x86: Use a switch statement in __feature_translate()

From: Sean Christopherson
Date: Mon Oct 23 2023 - 20:25:29 EST


On Mon, Oct 23, 2023, Jim Mattson wrote:
> The compiler will probably do better than linear search.

It shouldn't matter, KVM relies on the compiler to resolve the translation at
compile time, e.g. the result is fed into reverse_cpuid_check().

I.e. we should pick whatever is least ugly.