Skip to content

Commit

Permalink
perf_counter tools: Reuse event_name() in kerneltop
Browse files Browse the repository at this point in the history
- can handle sw counters now
- the outputs will look slightly different

Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Wu Fengguang authored and Ingo Molnar committed Apr 6, 2009
1 parent 95bb3be commit e390861
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions Documentation/perf_counter/kerneltop.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,16 +67,6 @@

#include "perfcounters.h"

const char *event_types [] = {
"CPU cycles",
"instructions",
"cache-refs",
"cache-misses",
"branches",
"branch-misses",
"bus cycles"
};

const unsigned int default_count[] = {
1000000,
1000000,
Expand Down Expand Up @@ -304,10 +294,7 @@ static void print_sym_table(void)
if (counter)
printf("/");

if (event_id[counter] < PERF_HW_EVENTS_MAX)
printf( "%s", event_types[event_id[counter]]);
else
printf( "raw:%04lx", event_id[counter]);
printf("%s", event_name(counter));
}

printf( "], ");
Expand Down

0 comments on commit e390861

Please sign in to comment.