The following changes since commit 331539ace6487a031f40281eacf41e4de008ad23: OSX should use off_t for off64_t (2010-03-19 21:31:01 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): Make ARMv7 build and work arch/arch-arm.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) --- Diff of recent changes: diff --git a/arch/arch-arm.h b/arch/arch-arm.h index 1b590f1..b0cfd80 100644 --- a/arch/arch-arm.h +++ b/arch/arch-arm.h @@ -22,6 +22,10 @@ #define nop __asm__ __volatile__("mov\tr0,r0\t@ nop\n\t") #define read_barrier() __asm__ __volatile__ ("" : : : "memory") #define write_barrier() __asm__ __volatile__ ("" : : : "memory") +#elif defined(__ARM_ARCH_7A__) +#define nop __asm__ __volatile__ ("nop") +#define read_barrier() __sync_synchronize() +#define write_barrier() __sync_synchronize() #endif #endif -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html