Re: [Qemu-devel] [PATCH v4 10/16] linux-user: Split out some simple file syscalls

2018-08-23 Thread Laurent Vivier
Le 23/08/2018 à 00:58, Richard Henderson a écrit : > On 08/21/2018 05:50 PM, Laurent Vivier wrote: >> I don't understand why you need/want to duplicate the list of syscalls here. >> >> If I modify your patch as following, it works without duplicating the list: >> >> diff --git a/linux-user/syscall-

Re: [Qemu-devel] [PATCH v4 10/16] linux-user: Split out some simple file syscalls

2018-08-22 Thread Richard Henderson
On 08/21/2018 05:50 PM, Laurent Vivier wrote: > I don't understand why you need/want to duplicate the list of syscalls here. > > If I modify your patch as following, it works without duplicating the list: > > diff --git a/linux-user/syscall-file.def.c b/linux-user/syscall-file.def.c > new file mo

Re: [Qemu-devel] [PATCH v4 10/16] linux-user: Split out some simple file syscalls

2018-08-21 Thread Laurent Vivier
Le 18/08/2018 à 21:01, Richard Henderson a écrit : > This includes close, open, openat, read, readlink, readlinkat, write. > > Signed-off-by: Richard Henderson > --- > linux-user/strace.c | 64 - > linux-user/syscall-file.inc.c | 440 ++ > linux-use

[Qemu-devel] [PATCH v4 10/16] linux-user: Split out some simple file syscalls

2018-08-18 Thread Richard Henderson
This includes close, open, openat, read, readlink, readlinkat, write. Signed-off-by: Richard Henderson --- linux-user/strace.c | 64 - linux-user/syscall-file.inc.c | 440 ++ linux-user/syscall.c | 393 ++ linux-