Re: [PATCH] hw/display/omap_dss: Replace fprintf() call by qemu_log_mask(LOG_UNIMP)

2020-05-26 Thread Thomas Huth
On 24/05/2020 12.38, Philippe Mathieu-Daudé wrote: > Replace fprintf() call by qemu_log_mask(LOG_UNIMP), which is > disabled by default. This avoid flooding the terminal when > fuzzing the device. > > Signed-off-by: Philippe Mathieu-Daudé > --- > hw/display/omap_dss.c | 2 +- > 1 file changed, 1

Re: [PATCH] hw/display/omap_dss: Replace fprintf() call by qemu_log_mask(LOG_UNIMP)

2020-05-24 Thread Philippe Mathieu-Daudé
On 5/24/20 2:41 PM, Alexander Bulekov wrote: > On 200524 1238, Philippe Mathieu-Daudé wrote: >> Replace fprintf() call by qemu_log_mask(LOG_UNIMP), which is >> disabled by default. This avoid flooding the terminal when >> fuzzing the device. >> > Hi Philippe, > libfuzzer also lets you pass -close_f

Re: [PATCH] hw/display/omap_dss: Replace fprintf() call by qemu_log_mask(LOG_UNIMP)

2020-05-24 Thread Alexander Bulekov
On 200524 1238, Philippe Mathieu-Daudé wrote: > Replace fprintf() call by qemu_log_mask(LOG_UNIMP), which is > disabled by default. This avoid flooding the terminal when > fuzzing the device. > Hi Philippe, libfuzzer also lets you pass -close_fd_mask=[1,2,3] to close stdout, stderr or both. As a s

[PATCH] hw/display/omap_dss: Replace fprintf() call by qemu_log_mask(LOG_UNIMP)

2020-05-24 Thread Philippe Mathieu-Daudé
Replace fprintf() call by qemu_log_mask(LOG_UNIMP), which is disabled by default. This avoid flooding the terminal when fuzzing the device. Signed-off-by: Philippe Mathieu-Daudé --- hw/display/omap_dss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/display/omap_dss.c b/