Re: [PATCH] target/nios2: Use gen_io_start/end around wrctl instruction.

2020-06-19 Thread Peter Maydell
On Thu, 18 Jun 2020 at 18:31, Peter Maydell wrote: > > On Thu, 18 Jun 2020 at 04:50, wentongw wrote: > > > > From: Wentong Wu > > > > wrctl instruction on nios2 target will cause checking cpu interrupt, > > but tcg_handle_interrupt() will call cpu_abort() if the CPU gets an > > interrupt while i

Re: [PATCH] target/nios2: Use gen_io_start/end around wrctl instruction.

2020-06-18 Thread Peter Maydell
On Thu, 18 Jun 2020 at 04:50, wentongw wrote: > > From: Wentong Wu > > wrctl instruction on nios2 target will cause checking cpu interrupt, > but tcg_handle_interrupt() will call cpu_abort() if the CPU gets an > interrupt while it's not in a 'can do IO' state, so around wrctl > instruction add ge

Re: [PATCH] target/nios2: Use gen_io_start/end around wrctl instruction.

2020-06-17 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200618114129.5636-1-wentong...@intel.com/ Hi, This series failed the asan build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #!/bin/bash exp

[PATCH] target/nios2: Use gen_io_start/end around wrctl instruction.

2020-06-17 Thread wentongw
From: Wentong Wu wrctl instruction on nios2 target will cause checking cpu interrupt, but tcg_handle_interrupt() will call cpu_abort() if the CPU gets an interrupt while it's not in a 'can do IO' state, so around wrctl instruction add gen_io_start/end. Signed-off-by: Wentong Wu --- target/nios