Re: [Qemu-devel] [PATCH] linux-user: fix error propagation in clock_gettime

2018-04-01 Thread Laurent Vivier
Le 01/04/2018 à 23:05, Laurent Vivier a écrit : > Le 01/04/2018 à 22:37, Max Filippov a écrit : >> host_to_target_timespec may return error if target address could not be >> locked, but it is ignored. >> Propagate return value of host_to_target_timespec to the caller of >> clock_gettime. >> >> Sign

Re: [Qemu-devel] [PATCH] linux-user: fix error propagation in clock_gettime

2018-04-01 Thread Laurent Vivier
Le 01/04/2018 à 22:37, Max Filippov a écrit : > host_to_target_timespec may return error if target address could not be > locked, but it is ignored. > Propagate return value of host_to_target_timespec to the caller of > clock_gettime. > > Signed-off-by: Max Filippov > --- > linux-user/syscall.c

Re: [Qemu-devel] [PATCH] linux-user: fix error propagation in clock_gettime

2018-04-01 Thread no-reply
Hi, This series failed docker-mingw@fedora build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. Type: series Message-id: 20180401203739.31670-1-jcmvb...@gmail.com Subject: [Qemu-devel] [PATCH] linux-user: fix

[Qemu-devel] [PATCH] linux-user: fix error propagation in clock_gettime

2018-04-01 Thread Max Filippov
host_to_target_timespec may return error if target address could not be locked, but it is ignored. Propagate return value of host_to_target_timespec to the caller of clock_gettime. Signed-off-by: Max Filippov --- linux-user/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --