mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 20:53:07 -04:00
perf stat: Fix condition in print_interval()
The num_print_interval and config->interval_clear should be checked together like other places like later in the function. Otherwise, the --interval-clear option could print the headers for the CSV or JSON output unnecessarily. Signed-off-by: Namhyung Kim <namhyung@kernel.org> Acked-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: James Clark <james.clark@arm.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Xing Zhengjun <zhengjun.xing@linux.intel.com> Link: https://lore.kernel.org/r/20221107213314.3239159-9-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
committed by
Arnaldo Carvalho de Melo
parent
1cc7642abb
commit
f1db5a1d1d
@@ -900,8 +900,8 @@ static void print_interval(struct perf_stat_config *config,
|
||||
sprintf(prefix, "{\"interval\" : %lu.%09lu}", (unsigned long)
|
||||
ts->tv_sec, ts->tv_nsec);
|
||||
|
||||
if ((num_print_interval == 0 && !config->csv_output && !config->json_output)
|
||||
|| config->interval_clear) {
|
||||
if ((num_print_interval == 0 || config->interval_clear) &&
|
||||
!config->csv_output && !config->json_output) {
|
||||
switch (config->aggr_mode) {
|
||||
case AGGR_NODE:
|
||||
fprintf(output, "# time node cpus");
|
||||
|
||||
Reference in New Issue
Block a user