Re: [Xen-devel] [PATCH 1/2] tools: Use POSIX poll.h instead of sys/poll.h

2017-04-18 Thread Julien Grall
Hi Wei, Release-acked-by: Julien Grall Cheers, On 18/04/17 11:13, Wei Liu wrote: Really CC Julien. :-/ On Tue, Apr 18, 2017 at 11:10:59AM +0100, Wei Liu wrote: Cc Julien I think these two patches should be in 4.9. On Mon, Apr 17, 2017 at 02:33:10PM -0700, Alistair

Re: [Xen-devel] [PATCH 1/2] tools: Use POSIX poll.h instead of sys/poll.h

2017-04-18 Thread Razvan Cojocaru
On 04/18/2017 01:02 PM, Wei Liu wrote: > On Mon, Apr 17, 2017 at 02:33:10PM -0700, Alistair Francis wrote: >> The POSIX spec specifies to use: >> #include >> instead of: >> #include >> as seen here: >> http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html >> >> This

Re: [Xen-devel] [PATCH 1/2] tools: Use POSIX poll.h instead of sys/poll.h

2017-04-18 Thread Wei Liu
Really CC Julien. :-/ On Tue, Apr 18, 2017 at 11:10:59AM +0100, Wei Liu wrote: > Cc Julien > > I think these two patches should be in 4.9. > > On Mon, Apr 17, 2017 at 02:33:10PM -0700, Alistair Francis wrote: > > The POSIX spec specifies to use: > > #include > > instead of: > >

Re: [Xen-devel] [PATCH 1/2] tools: Use POSIX poll.h instead of sys/poll.h

2017-04-18 Thread Wei Liu
Cc Julien I think these two patches should be in 4.9. On Mon, Apr 17, 2017 at 02:33:10PM -0700, Alistair Francis wrote: > The POSIX spec specifies to use: > #include > instead of: > #include > as seen here: > http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html > >

Re: [Xen-devel] [PATCH 1/2] tools: Use POSIX poll.h instead of sys/poll.h

2017-04-18 Thread Wei Liu
On Mon, Apr 17, 2017 at 02:33:10PM -0700, Alistair Francis wrote: > The POSIX spec specifies to use: > #include > instead of: > #include > as seen here: > http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html > > This removes the warning: > #warning redirecting

[Xen-devel] [PATCH 1/2] tools: Use POSIX poll.h instead of sys/poll.h

2017-04-17 Thread Alistair Francis
The POSIX spec specifies to use: #include instead of: #include as seen here: http://pubs.opengroup.org/onlinepubs/009695399/functions/poll.html This removes the warning: #warning redirecting incorrect #include to when building with the musl C-library. Signed-off-by: Alistair