Re: [Qemu-devel] [PATCH] linux-user: fix fadvise64_64() on ppc

2017-04-25 Thread Laurent Vivier
Ping? Laurent Le 02/03/2017 à 01:11, Laurent Vivier a écrit : > On ppc, advice is arg2, not arg6: > > long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low, > u32 len_high, u32 len_low) > > Signed-off-by: Laurent Vivier > --- > linux-user/syscall.c |

[Qemu-devel] [PATCH] linux-user: fix fadvise64_64() on ppc

2017-03-01 Thread Laurent Vivier
On ppc, advice is arg2, not arg6: long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low, u32 len_high, u32 len_low) Signed-off-by: Laurent Vivier --- linux-user/syscall.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/linux-user/syscall