On Fri, Sep 04, 2015 at 03:45:13PM -0700, Andi Kleen wrote: SNIP
> @@ -695,11 +743,7 @@ static void print_counter_aggr(struct perf_evsel > *counter, char *prefix) > } > > uval = avg * counter->scale; > - > - if (nsec_counter(counter)) > - nsec_printout(-1, 0, counter, uval); > - else > - abs_printout(-1, 0, counter, uval); > + printout(-1, 0, counter, uval); > > print_noise(counter, avg); > > @@ -752,15 +796,9 @@ static void print_counter(struct perf_evsel *counter, > char *prefix) > } > > uval = val * counter->scale; > - > - if (nsec_counter(counter)) > - nsec_printout(cpu, 0, counter, uval); > - else > - abs_printout(cpu, 0, counter, uval); > - > + printout(cpu, 0, counter, uval); > if (!csv_output) > print_noise(counter, 1.0); > - print_running(run, ena); why is this one removed? jirka -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/