]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/i386: the sgx_epc_get_section stub is reachable
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 1 Feb 2022 19:09:41 +0000 (20:09 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Sun, 31 Dec 2023 08:11:27 +0000 (09:11 +0100)
The sgx_epc_get_section stub is reachable from cpu_x86_cpuid.  It
should not assert, instead it should just return true just like
the "real" sgx_epc_get_section does when SGX is disabled.

Reported-by: Vladimír Beneš <vbenes@redhat.com>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-ID: <20220201190941.106001-1-pbonzini@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/i386/sgx-stub.c

index 26833eb233c5b6448831c76c31266babaa070265..16b1dfd90bb52a48a0a4ffcc76485d2baccf724e 100644 (file)
@@ -34,5 +34,5 @@ void pc_machine_init_sgx_epc(PCMachineState *pcms)
 
 bool sgx_epc_get_section(int section_nr, uint64_t *addr, uint64_t *size)
 {
-    g_assert_not_reached();
+    return true;
 }