Re: [Qemu-devel] [PATCH v7 03/10] linux-user: Add support for syncfs() syscall

2016-10-07 Thread Aleksandar Markovic
t: Re: [Qemu-devel] [PATCH v7 03/10] linux-user: Add support for syncfs() syscall On Thu, Sep 22, 2016 at 06:56:52PM +0200, Aleksandar Markovic wrote: > From: Aleksandar Markovic > > This patch implements syncfs() syscall support. The implementation > consists of a straightforward inv

Re: [Qemu-devel] [PATCH v7 03/10] linux-user: Add support for syncfs() syscall

2016-10-07 Thread Riku Voipio
On Thu, Sep 22, 2016 at 06:56:52PM +0200, Aleksandar Markovic wrote: > From: Aleksandar Markovic > > This patch implements syncfs() syscall support. The implementation > consists of a straightforward invocation of host's syncfs() only. > > Signed-off-by: Aleksandar Markovic > --- > linux-user/

[Qemu-devel] [PATCH v7 03/10] linux-user: Add support for syncfs() syscall

2016-09-22 Thread Aleksandar Markovic
From: Aleksandar Markovic This patch implements syncfs() syscall support. The implementation consists of a straightforward invocation of host's syncfs() only. Signed-off-by: Aleksandar Markovic --- linux-user/syscall.c | 5 + 1 file changed, 5 insertions(+) diff --git a/linux-user/syscall