diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2022-02-01 20:09:41 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-12-31 09:11:27 +0100 |
commit | 219615740425d9683588207b40a365e6741691a6 (patch) | |
tree | 14db06c04a4e9322d3ea05d8292b004ddb94cfd7 /hw | |
parent | 405c7c07082b4f9d11500659c849657297f0d065 (diff) | |
download | qemu-219615740425d9683588207b40a365e6741691a6.zip qemu-219615740425d9683588207b40a365e6741691a6.tar.gz qemu-219615740425d9683588207b40a365e6741691a6.tar.bz2 |
target/i386: the sgx_epc_get_section stub is reachable
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>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/sgx-stub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/sgx-stub.c b/hw/i386/sgx-stub.c index 26833eb..16b1dfd 100644 --- a/hw/i386/sgx-stub.c +++ b/hw/i386/sgx-stub.c @@ -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; } |