|
@@ -302,7 +302,7 @@ struct perf_hpp_fmt perf_hpp__format[] = {
|
|
|
#undef HPP__COLOR_PRINT_FNS
|
|
|
#undef HPP__PRINT_FNS
|
|
|
|
|
|
-void perf_hpp__init(bool need_pair, bool show_displacement)
|
|
|
+void perf_hpp__init(void)
|
|
|
{
|
|
|
if (symbol_conf.show_cpu_utilization) {
|
|
|
perf_hpp__format[PERF_HPP__OVERHEAD_SYS].cond = true;
|
|
@@ -319,15 +319,12 @@ void perf_hpp__init(bool need_pair, bool show_displacement)
|
|
|
|
|
|
if (symbol_conf.show_total_period)
|
|
|
perf_hpp__format[PERF_HPP__PERIOD].cond = true;
|
|
|
+}
|
|
|
|
|
|
- if (need_pair) {
|
|
|
- perf_hpp__format[PERF_HPP__OVERHEAD].cond = false;
|
|
|
- perf_hpp__format[PERF_HPP__BASELINE].cond = true;
|
|
|
- perf_hpp__format[PERF_HPP__DELTA].cond = true;
|
|
|
-
|
|
|
- if (show_displacement)
|
|
|
- perf_hpp__format[PERF_HPP__DISPL].cond = true;
|
|
|
- }
|
|
|
+void perf_hpp__column_enable(unsigned col, bool enable)
|
|
|
+{
|
|
|
+ BUG_ON(col >= PERF_HPP__MAX_INDEX);
|
|
|
+ perf_hpp__format[col].cond = enable;
|
|
|
}
|
|
|
|
|
|
static inline void advance_hpp(struct perf_hpp *hpp, int inc)
|