Readd the arch ffz functions
[fio.git] / arch / arch-x86.h
index 574383a65e0c4ca90ea9a2271b51e2390182f10c..a396c850345ddc8cb90042b34d7d39c723aea4c8 100644 (file)
 #endif
 
 #ifndef __NR_async_exec
-#define __NR_async_exec                320
-#define __NR_async_wait                321
-#define __NR_umem_add          322
-#define __NR_async_thread      323
+#define __NR_async_exec                325
+#define __NR_async_wait                326
+#define __NR_umem_add          327
+#define __NR_async_thread      328
 #endif
 
 #define        FIO_HUGE_PAGE           4194304
 
 #define FIO_HAVE_SYSLET
 
-#define nop    __asm__ __volatile__("rep;nop": : :"memory")
+#define nop            __asm__ __volatile__("rep;nop": : :"memory")
+#define read_barrier() asm volatile ("": : :"memory")
 
-static inline unsigned long fio_ffz(unsigned long bitmask)
+static inline unsigned long arch_ffz(unsigned long bitmask)
 {
        __asm__("bsfl %1,%0" :"=r" (bitmask) :"r" (~bitmask));
        return bitmask;
 }
+#define ARCH_HAVE_FFZ
 
 #endif