Re: [Qemu-devel] [PATCH v16 1/5] linux-user: Add support for translation of statx() syscall

2019-07-01 Thread Laurent Vivier
Le 28/06/2019 à 12:43, Aleksandar Markovic a écrit : > From: Aleksandar Rikalo > > Implement support for translation of system call statx(). > > The implementation is based on "best effort" approach: if host > is capable of executing statx(), host statx() is used. If not, > the implementation in

Re: [Qemu-devel] [PATCH v16 1/5] linux-user: Add support for translation of statx() syscall

2019-06-30 Thread Aleksandar Markovic
On Jun 29, 2019 6:06 AM, "Jim Wilson" wrote: > > On Fri, Jun 28, 2019 at 5:53 PM Aleksandar Markovic > wrote: > > This patch went trough several transformations in last few days, and I am a little worried that we forgot the primary reasons/scenarios why want it in the first place. In that light,

Re: [Qemu-devel] [PATCH v16 1/5] linux-user: Add support for translation of statx() syscall

2019-06-28 Thread Jim Wilson
On Fri, Jun 28, 2019 at 5:53 PM Aleksandar Markovic wrote: > This patch went trough several transformations in last few days, and I am a > little worried that we forgot the primary reasons/scenarios why want it in > the first place. In that light, may I ask you to recheck this latest version >

Re: [Qemu-devel] [PATCH v16 1/5] linux-user: Add support for translation of statx() syscall

2019-06-28 Thread Aleksandar Markovic
Hello, Jim. On Jun 28, 2019 12:51 PM, "Aleksandar Markovic" < aleksandar.marko...@rt-rk.com> wrote: > > From: Aleksandar Rikalo > > Implement support for translation of system call statx(). > This patch went trough several transformations in last few days, and I am a little worried that we forgo

[Qemu-devel] [PATCH v16 1/5] linux-user: Add support for translation of statx() syscall

2019-06-28 Thread Aleksandar Markovic
From: Aleksandar Rikalo Implement support for translation of system call statx(). The implementation is based on "best effort" approach: if host is capable of executing statx(), host statx() is used. If not, the implementation includes invoking a more mature system call fstatat() on the host sid