diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-07-26 18:06:19 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-02 07:58:16 -0400 |
commit | 59b9005692d4c8b5d73cfc41aa7229f47be163a9 (patch) | |
tree | ea3d2d6ff46d9f29ee0cc744c4ad6080b9d757b0 /tools | |
parent | 9b30a26bf3d2c56dcb1c3afaca28b73fcd6ed405 (diff) |
perf top: Add mwait_idle_with_hints to skip_symbols[]
We skip the display of idle routine related symbols because
they are typically rather erratic and confusing: they depend
on the IRQ rate or sometimes they dominate the profile if
they are polling based.
Add mwait_idle_with_hints too, this is one of the idle
routines on x86.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-top.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index c0a423004e15..f139f1ab9333 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -285,6 +285,7 @@ static const char *skip_symbols[] = { | |||
285 | "enter_idle", | 285 | "enter_idle", |
286 | "exit_idle", | 286 | "exit_idle", |
287 | "mwait_idle", | 287 | "mwait_idle", |
288 | "mwait_idle_with_hints", | ||
288 | "ppc64_runlatch_off", | 289 | "ppc64_runlatch_off", |
289 | "pseries_dedicated_idle_sleep", | 290 | "pseries_dedicated_idle_sleep", |
290 | NULL | 291 | NULL |