On 30/10/25 17:59, Igor Mammedov wrote:
Commit [1] broke interrupt handling, replacing interrupts fetch with a bool and then the remaining code attempting to check individual bits on that bool value, which effectively masked those interrupts.Fix it by checking individual interrupt bits directly instead of old 'fetch then check' approach. 1) Fixes: 87511341c30d ("add cpu_test_interrupt()/cpu_set_interrupt() helpers and use them tree wide") Reported-by: Thomas Huth <[email protected]> Signed-off-by: Igor Mammedov <[email protected]> --- target/rx/helper.c | 41 ++++++++++++++++++----------------------- 1 file changed, 18 insertions(+), 23 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
