On Mon, Jul 31, 2023 at 12:22:01PM -0400, Xiaoyao Li <xiaoyao.li@xxxxxxxxx> wrote: > Signed-off-by: Xiaoyao Li <xiaoyao.li@xxxxxxxxx> > --- > target/i386/kvm/kvm.c | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/target/i386/kvm/kvm.c b/target/i386/kvm/kvm.c > index a96640512dbc..62f237068a3a 100644 > --- a/target/i386/kvm/kvm.c > +++ b/target/i386/kvm/kvm.c > @@ -2654,6 +2654,13 @@ int kvm_arch_init(MachineState *ms, KVMState *s) > > if (x86ms->vm_type == KVM_X86_SW_PROTECTED_VM) { > memory_listener_register(&kvm_x86_sw_protected_vm_memory_listener, &address_space_memory); > + > + if (x86ms->smm == ON_OFF_AUTO_AUTO) { > + x86ms->smm = ON_OFF_AUTO_OFF; > + } else if (x86ms->smm == ON_OFF_AUTO_ON) { > + error_report("X86_SW_PROTECTED_VM doesn't support SMM"); > + return -EINVAL; > + } > } > If we use confidential guest support, this check should go to there. -- Isaku Yamahata <isaku.yamahata@xxxxxxxxx>