Re: [Qemu-devel] [PATCH] Remove unnecessary FreeBSD #include

2013-04-25 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] Remove unnecessary FreeBSD #include

2013-04-25 Thread Ed Maste
On 25 April 2013 12:59, Peter Maydell wrote: > (Our other use of __FreeBSD_version is preceded by a direct > include of sys/param.h in translate-all.c.) I noticed that one. It's checking for __FreeBSD_version >= 700104, which corresponds to a point in time a little before the 7.1 release. Since

Re: [Qemu-devel] [PATCH] Remove unnecessary FreeBSD #include

2013-04-25 Thread Peter Maydell
On 25 April 2013 17:17, Ed Maste wrote: > sys/param.h was included to define __FreeBSD_version, but the conditional > using it was removed by commit d05ef160453e98546a4197496dc8a3cb2defac53 > (Brad Smith, "Allow clock_gettime() monotonic clock to be utilized on more > OS's"), so the include is no

[Qemu-devel] [PATCH] Remove unnecessary FreeBSD #include

2013-04-25 Thread Ed Maste
sys/param.h was included to define __FreeBSD_version, but the conditional using it was removed by commit d05ef160453e98546a4197496dc8a3cb2defac53 (Brad Smith, "Allow clock_gettime() monotonic clock to be utilized on more OS's"), so the include is no longer needed here. Signed-off-by: Ed Maste ---