Thanks for comment. On Sun, Mar 13, 2022 at 02:49:51PM +0100, Paolo Bonzini <pbonzini@xxxxxxxxxx> wrote: > On 3/4/22 20:48, isaku.yamahata@xxxxxxxxx wrote: > > From: Isaku Yamahata <isaku.yamahata@xxxxxxxxx> > > +static int __init __tdx_hardware_setup(struct kvm_x86_ops *x86_ops) > > +{ > > + u32 max_pa; > > + > > + if (!enable_ept) { > > + pr_warn("Cannot enable TDX with EPT disabled\n"); > > + return -EINVAL; > > + } > > + > > + if (!platform_has_tdx()) { > > + pr_warn("Cannot enable TDX with SEAMRR disabled\n"); > > + return -ENODEV; > > + } > > This will cause a pr_warn in the logs on all machines that don't have TDX. > Perhaps you can restrict the pr_warn() to machines that have > __seamrr_enabled() == true? Makes sense. I'll include the following change. diff --git a/arch/x86/include/asm/tdx.h b/arch/x86/include/asm/tdx.h index 73bb472bd515..aa02c98afd11 100644 --- a/arch/x86/include/asm/tdx.h +++ b/arch/x86/include/asm/tdx.h @@ -134,6 +134,7 @@ struct tdsysinfo_struct { }; } __packed __aligned(TDSYSINFO_STRUCT_ALIGNMENT); +bool __seamrr_enabled(void); void tdx_detect_cpu(struct cpuinfo_x86 *c); int tdx_detect(void); int tdx_init(void); @@ -143,6 +144,7 @@ u32 tdx_get_global_keyid(void); int tdx_keyid_alloc(void); void tdx_keyid_free(int keyid); #else +static inline bool __seamrr_enabled(void) { return false; } static inline void tdx_detect_cpu(struct cpuinfo_x86 *c) { } static inline int tdx_detect(void) { return -ENODEV; } static inline int tdx_init(void) { return -ENODEV; } diff --git a/arch/x86/kvm/vmx/tdx.c b/arch/x86/kvm/vmx/tdx.c index 66dffe815e63..880d8291b380 100644 --- a/arch/x86/kvm/vmx/tdx.c +++ b/arch/x86/kvm/vmx/tdx.c @@ -2625,7 +2625,8 @@ static int __init __tdx_hardware_setup(struct kvm_x86_ops *x86_ops) } if (!platform_has_tdx()) { - pr_warn("Cannot enable TDX with SEAMRR disabled\n"); + if (__seamrr_enabled()) + pr_warn("Cannot enable TDX with SEAMRR disabled\n"); return -ENODEV; } diff --git a/arch/x86/virt/vmx/tdx.c b/arch/x86/virt/vmx/tdx.c index d99961b7cb02..bb578a72b2da 100644 --- a/arch/x86/virt/vmx/tdx.c +++ b/arch/x86/virt/vmx/tdx.c @@ -186,10 +186,11 @@ static const struct kernel_param_ops tdx_trace_ops = { module_param_cb(tdx_trace_level, &tdx_trace_ops, &tdx_trace_level, 0644); MODULE_PARM_DESC(tdx_trace_level, "TDX module trace level"); -static bool __seamrr_enabled(void) +bool __seamrr_enabled(void) { return (seamrr_mask & SEAMRR_ENABLED_BITS) == SEAMRR_ENABLED_BITS; } +EXPORT_SYMBOL_GPL(__seamrr_enabled); static void detect_seam_bsp(struct cpuinfo_x86 *c) { -- Isaku Yamahata <isaku.yamahata@xxxxxxxxx>