Re: [Qemu-devel] [PATCH for-3.0 2/3] linux-user: Do not report "syscall not implemented" by default

2018-07-06 Thread Philippe Mathieu-Daudé
On 07/06/2018 01:08 PM, Peter Maydell wrote: > On 6 July 2018 at 16:51, Philippe Mathieu-Daudé wrote: >> This can still be reported using the "-d unimp" command line option. >> >> Code change produced with: >> >> git ls-files linux-user | \ >> xargs sed -i -E 's/fprintf\(stderr,\s?(".*not >>

Re: [Qemu-devel] [PATCH for-3.0 2/3] linux-user: Do not report "syscall not implemented" by default

2018-07-06 Thread Peter Maydell
On 6 July 2018 at 16:51, Philippe Mathieu-Daudé wrote: > This can still be reported using the "-d unimp" command line option. > > Code change produced with: > > git ls-files linux-user | \ > xargs sed -i -E 's/fprintf\(stderr,\s?(".*not > implemented\\n")\);/qemu_log_mask(LOG_UNIMP, \1);/g' >

[Qemu-devel] [PATCH for-3.0 2/3] linux-user: Do not report "syscall not implemented" by default

2018-07-06 Thread Philippe Mathieu-Daudé
This can still be reported using the "-d unimp" command line option. Code change produced with: git ls-files linux-user | \ xargs sed -i -E 's/fprintf\(stderr,\s?(".*not implemented\\n")\);/qemu_log_mask(LOG_UNIMP, \1);/g' Signed-off-by: Philippe Mathieu-Daudé --- linux-user/cris/signal.c