diff options
author | Jiri Olsa <jolsa@redhat.com> | 2012-10-04 08:49:39 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-10-04 12:30:27 -0400 |
commit | 1d77822ea6245e89149872405a3844e0778a004a (patch) | |
tree | 8ddc334a3be9f0248ee83c8a5bf2b84be2204953 /tools/perf/ui/hist.c | |
parent | 41724e4cf6c443d2dc575669b8555f0e2ae427a9 (diff) |
perf tool: Add hpp interface to enable/disable hpp column
Adding perf_hpp__column_enable function to enable/disable hists column
and removing diff command specific stuff 'need_pair and
show_displacement' from hpp code.
The diff command now enables/disables columns separately according to
the user arguments. This will be helpful in future patches where more
columns are added into diff output.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1349354994-17853-6-git-send-email-namhyung@kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui/hist.c')
-rw-r--r-- | tools/perf/ui/hist.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c index 6b0138e5f332..e8853f7780a3 100644 --- a/tools/perf/ui/hist.c +++ b/tools/perf/ui/hist.c | |||
@@ -302,7 +302,7 @@ struct perf_hpp_fmt perf_hpp__format[] = { | |||
302 | #undef HPP__COLOR_PRINT_FNS | 302 | #undef HPP__COLOR_PRINT_FNS |
303 | #undef HPP__PRINT_FNS | 303 | #undef HPP__PRINT_FNS |
304 | 304 | ||
305 | void perf_hpp__init(bool need_pair, bool show_displacement) | 305 | void perf_hpp__init(void) |
306 | { | 306 | { |
307 | if (symbol_conf.show_cpu_utilization) { | 307 | if (symbol_conf.show_cpu_utilization) { |
308 | perf_hpp__format[PERF_HPP__OVERHEAD_SYS].cond = true; | 308 | perf_hpp__format[PERF_HPP__OVERHEAD_SYS].cond = true; |
@@ -319,15 +319,12 @@ void perf_hpp__init(bool need_pair, bool show_displacement) | |||
319 | 319 | ||
320 | if (symbol_conf.show_total_period) | 320 | if (symbol_conf.show_total_period) |
321 | perf_hpp__format[PERF_HPP__PERIOD].cond = true; | 321 | perf_hpp__format[PERF_HPP__PERIOD].cond = true; |
322 | } | ||
322 | 323 | ||
323 | if (need_pair) { | 324 | void perf_hpp__column_enable(unsigned col, bool enable) |
324 | perf_hpp__format[PERF_HPP__OVERHEAD].cond = false; | 325 | { |
325 | perf_hpp__format[PERF_HPP__BASELINE].cond = true; | 326 | BUG_ON(col >= PERF_HPP__MAX_INDEX); |
326 | perf_hpp__format[PERF_HPP__DELTA].cond = true; | 327 | perf_hpp__format[col].cond = enable; |
327 | |||
328 | if (show_displacement) | ||
329 | perf_hpp__format[PERF_HPP__DISPL].cond = true; | ||
330 | } | ||
331 | } | 328 | } |
332 | 329 | ||
333 | static inline void advance_hpp(struct perf_hpp *hpp, int inc) | 330 | static inline void advance_hpp(struct perf_hpp *hpp, int inc) |