| Subject | Re: [RFC v1 03/26] x86/cpufeatures: Add is_tdx_guest() interface | From | Dave Hansen <> | Date | Thu, 1 Apr 2021 14:08:59 -0700 |
| |
On 2/5/21 3:38 PM, Kuppuswamy Sathyanarayanan wrote: > +bool is_tdx_guest(void) > +{ > + return static_cpu_has(X86_FEATURE_TDX_GUEST); > +}
Why do you need is_tdx_guest() as opposed to calling cpu_feature_enabled(X86_FEATURE_TDX_GUEST) everywhere?
|