diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2025-08-29 10:46:48 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-08-29 12:48:14 +0200 |
| commit | b8217bbaf2bafef1a4f54082a3548613eeef8f2b (patch) | |
| tree | 7447c565e18fb6a172acfba8ad6200c9b517ce35 /accel/tcg/user-exec.c | |
| parent | d8701867d12241f53f3b17973e7fd533c764c76a (diff) | |
| download | focaccia-qemu-b8217bbaf2bafef1a4f54082a3548613eeef8f2b.tar.gz focaccia-qemu-b8217bbaf2bafef1a4f54082a3548613eeef8f2b.zip | |
user-exec: ensure interrupt_request is not used
cpu_interrupt() is not called anymore except by ARM but even there it is dead code; disentangling the various cpregs accessors from user-mode emulation is a work in progress. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'accel/tcg/user-exec.c')
| -rw-r--r-- | accel/tcg/user-exec.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/accel/tcg/user-exec.c b/accel/tcg/user-exec.c index f25d80e2dc..748bfab04a 100644 --- a/accel/tcg/user-exec.c +++ b/accel/tcg/user-exec.c @@ -48,9 +48,7 @@ __thread uintptr_t helper_retaddr; void cpu_interrupt(CPUState *cpu, int mask) { - g_assert(bql_locked()); - cpu->interrupt_request |= mask; - qatomic_set(&cpu->neg.icount_decr.u16.high, -1); + g_assert_not_reached(); } /* |