Re: [Qemu-devel] [PATCH] linux-user: Fix compilation when F_SETPIPE_SZ isn't defined

2016-07-01 Thread Peter Maydell
On 30 June 2016 at 18:51, Laurent Vivier wrote: > > > Le 30/06/2016 à 18:33, Peter Maydell a écrit : >> Older kernels don't have F_SETPIPE_SZ and F_GETPIPE_SZ (in >> particular RHEL6's system headers don't define these). Add >> ifdefs so that we can gracefully fall back to not supporting >> those

Re: [Qemu-devel] [PATCH] linux-user: Fix compilation when F_SETPIPE_SZ isn't defined

2016-06-30 Thread Laurent Vivier
Le 30/06/2016 à 18:33, Peter Maydell a écrit : > Older kernels don't have F_SETPIPE_SZ and F_GETPIPE_SZ (in > particular RHEL6's system headers don't define these). Add > ifdefs so that we can gracefully fall back to not supporting > those guest ioctls rather than failing to build. > > Signed-of

[Qemu-devel] [PATCH] linux-user: Fix compilation when F_SETPIPE_SZ isn't defined

2016-06-30 Thread Peter Maydell
Older kernels don't have F_SETPIPE_SZ and F_GETPIPE_SZ (in particular RHEL6's system headers don't define these). Add ifdefs so that we can gracefully fall back to not supporting those guest ioctls rather than failing to build. Signed-off-by: Peter Maydell --- Reported by an anonymous IRC user...