Hitoshi Mitake | c426bba | 2009-11-05 09:31:31 +0900 | [diff] [blame] | 1 | #ifndef BENCH_H |
| 2 | #define BENCH_H |
| 3 | |
Vinson Lee | d1398cc | 2013-03-13 15:34:24 -0700 | [diff] [blame] | 4 | /* |
| 5 | * The madvise transparent hugepage constants were added in glibc |
| 6 | * 2.13. For compatibility with older versions of glibc, define these |
| 7 | * tokens if they are not already defined. |
| 8 | * |
| 9 | * PA-RISC uses different madvise values from other architectures and |
| 10 | * needs to be special-cased. |
| 11 | */ |
| 12 | #ifdef __hppa__ |
| 13 | # ifndef MADV_HUGEPAGE |
| 14 | # define MADV_HUGEPAGE 67 |
| 15 | # endif |
| 16 | # ifndef MADV_NOHUGEPAGE |
| 17 | # define MADV_NOHUGEPAGE 68 |
| 18 | # endif |
| 19 | #else |
| 20 | # ifndef MADV_HUGEPAGE |
| 21 | # define MADV_HUGEPAGE 14 |
| 22 | # endif |
| 23 | # ifndef MADV_NOHUGEPAGE |
| 24 | # define MADV_NOHUGEPAGE 15 |
| 25 | # endif |
| 26 | #endif |
| 27 | |
Ingo Molnar | 1c13f3c | 2012-12-06 13:51:59 +0100 | [diff] [blame] | 28 | extern int bench_numa(int argc, const char **argv, const char *prefix); |
Ingo Molnar | 606bc1e | 2009-11-10 20:50:53 +0900 | [diff] [blame] | 29 | extern int bench_sched_messaging(int argc, const char **argv, const char *prefix); |
| 30 | extern int bench_sched_pipe(int argc, const char **argv, const char *prefix); |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 31 | extern int bench_mem_memcpy(int argc, const char **argv, |
| 32 | const char *prefix __maybe_unused); |
Jan Beulich | be3de80 | 2012-01-24 10:03:22 -0200 | [diff] [blame] | 33 | extern int bench_mem_memset(int argc, const char **argv, const char *prefix); |
Hitoshi Mitake | c426bba | 2009-11-05 09:31:31 +0900 | [diff] [blame] | 34 | |
Ingo Molnar | 606bc1e | 2009-11-10 20:50:53 +0900 | [diff] [blame] | 35 | #define BENCH_FORMAT_DEFAULT_STR "default" |
| 36 | #define BENCH_FORMAT_DEFAULT 0 |
| 37 | #define BENCH_FORMAT_SIMPLE_STR "simple" |
| 38 | #define BENCH_FORMAT_SIMPLE 1 |
Hitoshi Mitake | 242aa14 | 2009-11-10 08:19:59 +0900 | [diff] [blame] | 39 | |
Ingo Molnar | 606bc1e | 2009-11-10 20:50:53 +0900 | [diff] [blame] | 40 | #define BENCH_FORMAT_UNKNOWN -1 |
Hitoshi Mitake | 242aa14 | 2009-11-10 08:19:59 +0900 | [diff] [blame] | 41 | |
| 42 | extern int bench_format; |
| 43 | |
Hitoshi Mitake | c426bba | 2009-11-05 09:31:31 +0900 | [diff] [blame] | 44 | #endif |