diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-06-22 14:08:22 +0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-06-22 14:08:24 +0400 |
commit | 12310e9c1b9a53896e4df0459039dd125f62aa9b (patch) | |
tree | 99a629bc1711c72e67ab0e9e86730ef69a563bad /tools/perf/perf.h | |
parent | 181d95229b0931ee2ce6aad7348079cbc10e8d05 (diff) | |
download | linux-12310e9c1b9a53896e4df0459039dd125f62aa9b.tar.xz |
[S390] Enable tick based perf_counter on s390.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'tools/perf/perf.h')
-rw-r--r-- | tools/perf/perf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/perf.h b/tools/perf/perf.h index bccb529dac08..ceb68aa51f7f 100644 --- a/tools/perf/perf.h +++ b/tools/perf/perf.h @@ -13,6 +13,12 @@ #define cpu_relax() asm volatile ("" ::: "memory"); #endif +#ifdef __s390__ +#include "../../arch/s390/include/asm/unistd.h" +#define rmb() asm volatile("bcr 15,0" ::: "memory") +#define cpu_relax() asm volatile("" ::: "memory"); +#endif + #include <time.h> #include <unistd.h> #include <sys/types.h> |