Re: [Qemu-devel] [PATCH 0/7] Convert ffs(3) to ctz32()

2015-03-17 Thread Stefan Hajnoczi
On Tue, Mar 17, 2015 at 11:56 AM, Stefan Hajnoczi wrote: > MinGW does not always provide ffs(3). My MinGW 4.9.2 cannot link QEMU when > ./configure --enable-debug was used due to the missing ffs(3) function. Forgot to add that I'm happy for this patch series to go into QEMU 2.4 if you feel it to

[Qemu-devel] [PATCH 0/7] Convert ffs(3) to ctz32()

2015-03-17 Thread Stefan Hajnoczi
MinGW does not always provide ffs(3). My MinGW 4.9.2 cannot link QEMU when ./configure --enable-debug was used due to the missing ffs(3) function. In the past we already got rid of ffsl(3) calls, so getting rid of ffs(3) is a logical next step. This series replaces ffs(3) calls with ctz32(). Th