diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-06-07 17:31:52 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-07 17:31:52 +0200 |
commit | 716c69fecacd42f2a304a97158e04af2786a3f65 (patch) | |
tree | 5f86a0ce67ba87595d14a6fd6d5f59f8f7cf1f56 /tools/perf/util | |
parent | 743ee1f80434138495bbb95ffb897acf46b51d54 (diff) | |
download | linux-3.10-716c69fecacd42f2a304a97158e04af2786a3f65.tar.gz linux-3.10-716c69fecacd42f2a304a97158e04af2786a3f65.tar.bz2 linux-3.10-716c69fecacd42f2a304a97158e04af2786a3f65.zip |
perf top: Fall back to cpu-clock-tick hrtimer sampling if no cycle counter available
On architectures/CPUs without PMU support but with perfcounters
enabled 'perf top' currently fails because it cannot create a
cycle based hw-perfcounter.
Fall back to the cpu-clock-tick sw-perfcounter in this case, which
is hrtimer based and will always work (as long as perfcounters
is enabled).
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/usage.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/util/usage.c b/tools/perf/util/usage.c index 2cad286e437..e16bf9a707e 100644 --- a/tools/perf/util/usage.c +++ b/tools/perf/util/usage.c @@ -9,29 +9,29 @@ static void report(const char *prefix, const char *err, va_list params) { char msg[1024]; vsnprintf(msg, sizeof(msg), err, params); - fprintf(stderr, "%s%s\n", prefix, msg); + fprintf(stderr, " %s%s\n", prefix, msg); } static NORETURN void usage_builtin(const char *err) { - fprintf(stderr, "\n usage: %s\n", err); + fprintf(stderr, "\n Usage: %s\n", err); exit(129); } static NORETURN void die_builtin(const char *err, va_list params) { - report("fatal: ", err, params); + report(" Fatal: ", err, params); exit(128); } static void error_builtin(const char *err, va_list params) { - report("error: ", err, params); + report(" Error: ", err, params); } static void warn_builtin(const char *warn, va_list params) { - report("warning: ", warn, params); + report(" Warning: ", warn, params); } /* If we are in a dlopen()ed .so write to a global variable would segfault |