Don't align memory unless using raw io
[fio.git] / arch / arch-x86.h
index aa106920aeaf5cae6a1159d64bb9818196be3be5..574383a65e0c4ca90ea9a2271b51e2390182f10c 100644 (file)
@@ -31,7 +31,7 @@
 
 #define nop    __asm__ __volatile__("rep;nop": : :"memory")
 
-static inline unsigned long ffz(unsigned long bitmask)
+static inline unsigned long fio_ffz(unsigned long bitmask)
 {
        __asm__("bsfl %1,%0" :"=r" (bitmask) :"r" (~bitmask));
        return bitmask;