diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2015-09-25 15:15:37 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-09-28 21:51:33 +0200 |
commit | a38f48e300f9dac30a9b2d2ce958c8dbd7def351 (patch) | |
tree | 3f6152a3f31f37b81d64a699d9156cb0154ceaff /tools/perf/util/event.h | |
parent | perf script: Allow time to be displayed in nanoseconds (diff) | |
download | linux-a38f48e300f9dac30a9b2d2ce958c8dbd7def351.tar.xz linux-a38f48e300f9dac30a9b2d2ce958c8dbd7def351.zip |
perf session: Warn when AUX data has been lost
By default 'perf record' will postprocess the perf.data file to
determine build-ids. When that happens, the number of lost perf events
is displayed.
Make that also happen for AUX events.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/1443186956-18718-7-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r-- | tools/perf/util/event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index be5cbc7be889..a0dbcbd4f6d8 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h @@ -257,6 +257,7 @@ struct events_stats { u64 total_non_filtered_period; u64 total_lost; u64 total_lost_samples; + u64 total_aux_lost; u64 total_invalid_chains; u32 nr_events[PERF_RECORD_HEADER_MAX]; u32 nr_non_filtered_samples; |