Re: [Qemu-devel] [PATCH v2 1/2] linux-user: added support for preadv() system call.

2016-10-06 Thread Peter Maydell
On 6 October 2016 at 16:49, Dejan Jovicevic wrote: > v1 -> v2: > - Using safe_preadv() instead of calling preadv() directly. > > This system call performs the same task as the readv system call, > with the exception of having the fourth argument, offset, which > specifes the file offset at

[Qemu-devel] [PATCH v2 1/2] linux-user: added support for preadv() system call.

2016-10-06 Thread Dejan Jovicevic
v1 -> v2: - Using safe_preadv() instead of calling preadv() directly. This system call performs the same task as the readv system call, with the exception of having the fourth argument, offset, which specifes the file offset at which the input operation is to be performed. This implementa