The following changes since commit d7f5d470dfb9aba383bbf06ea53010c08a4f9b0d: Add 'null' perf test (2011-08-25 20:20:14 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Nobuhiro Iwamatsu (1): Fix compile on environment of SuperH arch/arch-sh.h | 5 +++++ arch/arch.h | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) --- Diff of recent changes: diff --git a/arch/arch-sh.h b/arch/arch-sh.h index ef4ee03..f5f313d 100644 --- a/arch/arch-sh.h +++ b/arch/arch-sh.h @@ -33,6 +33,11 @@ #define read_barrier() mb() #define write_barrier() mb() +#include <stdio.h> +#include <elf.h> + +extern unsigned long arch_flags; + #define CPU_HAS_LLSC 0x0040 static inline int arch_init(char *envp[]) diff --git a/arch/arch.h b/arch/arch.h index 16f4c3a..d598652 100644 --- a/arch/arch.h +++ b/arch/arch.h @@ -23,6 +23,13 @@ enum { arch_generic, }; +enum { + ARCH_FLAG_1 = 1 << 0, + ARCH_FLAG_2 = 1 << 1, + ARCH_FLAG_3 = 1 << 2, + ARCH_FLAG_4 = 1 << 3, +}; + #if defined(__i386__) #include "arch-x86.h" #elif defined(__x86_64__) @@ -65,11 +72,4 @@ static inline int arch_init(char *envp[]) } #endif -enum { - ARCH_FLAG_1 = 1 << 0, - ARCH_FLAG_2 = 1 << 1, - ARCH_FLAG_3 = 1 << 2, - ARCH_FLAG_4 = 1 << 3, -}; - #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