Re: [Qemu-devel] [PATCH v2 1/3] linux-user: Add support for statx() syscall

2018-10-23 Thread Laurent Vivier
On 23/10/2018 14:07, Aleksandar Markovic wrote: > From: Aleksandar Rikalo > > Implement support for translation of system call statx(). The > implementation includes invoking other (more mature) syscalls > (from the same 'stat' family) on the host side. This way, > problems of availability of sta

[Qemu-devel] [PATCH v2 1/3] linux-user: Add support for statx() syscall

2018-10-23 Thread Aleksandar Markovic
From: Aleksandar Rikalo Implement support for translation of system call statx(). The implementation includes invoking other (more mature) syscalls (from the same 'stat' family) on the host side. This way, problems of availability of statx() on the host side are avoided. Signed-off-by: Aleksanda