Re: [PATCH v1 1/1] riscv: Convert interrupt logs to use qemu_log_mask()

2020-09-30 Thread Alistair Francis
On Sun, Sep 27, 2020 at 9:22 AM Philippe Mathieu-Daudé wrote: > > On 9/27/20 3:47 PM, Alistair Francis wrote: > > Currently we log interrupts and exceptions using the trace backed in > > s/backed/backend/ > > > riscv_cpu_do_interrupt(). We also log execptions using the interrupt log > > Typo

Re: [PATCH v1 1/1] riscv: Convert interrupt logs to use qemu_log_mask()

2020-09-27 Thread Philippe Mathieu-Daudé
On 9/27/20 3:47 PM, Alistair Francis wrote: > Currently we log interrupts and exceptions using the trace backed in s/backed/backend/ > riscv_cpu_do_interrupt(). We also log execptions using the interrupt log Typo "exceptions". > mask (-d int) in riscv_raise_exception(). > > This PR converts

[PATCH v1 1/1] riscv: Convert interrupt logs to use qemu_log_mask()

2020-09-27 Thread Alistair Francis
Currently we log interrupts and exceptions using the trace backed in riscv_cpu_do_interrupt(). We also log execptions using the interrupt log mask (-d int) in riscv_raise_exception(). This PR converts riscv_cpu_do_interrupt() to log both interrupts and exceptions with the interrupt log mask, so