diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-09-14 16:56:32 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-11-02 07:00:52 -0400 |
commit | 028772c45cfdd21870f0f9056d270f03bf990fae (patch) | |
tree | 3bc3d69588e00bbf9b9fa1891e1840cf563e44bf /target/m68k/cpu.c | |
parent | f74bd157c62f5c064418d038f9003c9c4b3dad0e (diff) | |
download | qemu-028772c45cfdd21870f0f9056d270f03bf990fae.zip qemu-028772c45cfdd21870f0f9056d270f03bf990fae.tar.gz qemu-028772c45cfdd21870f0f9056d270f03bf990fae.tar.bz2 |
target/m68k: Make m68k_cpu_tlb_fill sysemu only
The fallback code in cpu_loop_exit_sigsegv is sufficient
for m68k linux-user.
Remove the code from cpu_loop that handled EXCP_ACCESS.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/m68k/cpu.c')
-rw-r--r-- | target/m68k/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/m68k/cpu.c b/target/m68k/cpu.c index 66d22d1..c7aeb7d 100644 --- a/target/m68k/cpu.c +++ b/target/m68k/cpu.c @@ -515,9 +515,9 @@ static const struct SysemuCPUOps m68k_sysemu_ops = { static const struct TCGCPUOps m68k_tcg_ops = { .initialize = m68k_tcg_init, - .tlb_fill = m68k_cpu_tlb_fill, #ifndef CONFIG_USER_ONLY + .tlb_fill = m68k_cpu_tlb_fill, .cpu_exec_interrupt = m68k_cpu_exec_interrupt, .do_interrupt = m68k_cpu_do_interrupt, .do_transaction_failed = m68k_cpu_transaction_failed, |