Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
---
target/i386/kvm/sw-protected-vm.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/target/i386/kvm/sw-protected-vm.c b/target/i386/kvm/sw-protected-vm.c
index f47ac383e1dd..65347067aa03 100644
--- a/target/i386/kvm/sw-protected-vm.c
+++ b/target/i386/kvm/sw-protected-vm.c
@@ -34,10 +34,18 @@ static MemoryListener kvm_x86_sw_protected_vm_memory_listener = {
int sw_protected_vm_kvm_init(MachineState *ms, Error **errp)
{
SwProtectedVm *spvm = SW_PROTECTED_VM(OBJECT(ms->cgs));
+ X86MachineState *x86ms = X86_MACHINE(ms);
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_setg(errp, "X86_SW_PROTECTED_VM doesn't support SMM");
+ return -EINVAL;
+ }
+
spvm->parent_obj.ready = true;
return 0;
}
--
2.34.1