Re: [PATCH v3 2/2] hw/m68k/mcf52xx: Replace hw_error() by qemu_log_mask()

2020-05-26 Thread Philippe Mathieu-Daudé
On 5/26/20 6:04 PM, Thomas Huth wrote: > Am Tue, 26 May 2020 11:40:52 +0200 > schrieb Philippe Mathieu-Daudé : > >> hw_error() calls exit(). This a bit overkill when we can log >> the accesses as unimplemented or guest error. >> >> When fuzzing the devices, we don't want the whole process to >> ex

Re: [PATCH v3 2/2] hw/m68k/mcf52xx: Replace hw_error() by qemu_log_mask()

2020-05-26 Thread Thomas Huth
Am Tue, 26 May 2020 11:40:52 +0200 schrieb Philippe Mathieu-Daudé : > hw_error() calls exit(). This a bit overkill when we can log > the accesses as unimplemented or guest error. > > When fuzzing the devices, we don't want the whole process to > exit. Replace some hw_error() calls by qemu_log_mas

[PATCH v3 2/2] hw/m68k/mcf52xx: Replace hw_error() by qemu_log_mask()

2020-05-26 Thread Philippe Mathieu-Daudé
hw_error() calls exit(). This a bit overkill when we can log the accesses as unimplemented or guest error. When fuzzing the devices, we don't want the whole process to exit. Replace some hw_error() calls by qemu_log_mask(). Signed-off-by: Philippe Mathieu-Daudé --- hw/m68k/mcf5206.c | 10 +