diff options
Diffstat (limited to 'tools/perf/util/session.c')
-rw-r--r-- | tools/perf/util/session.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c index 627be09b479e..cf1fe01b7e89 100644 --- a/tools/perf/util/session.c +++ b/tools/perf/util/session.c | |||
@@ -801,6 +801,9 @@ static void dump_sample(struct perf_evsel *evsel, union perf_event *event, | |||
801 | 801 | ||
802 | if (sample_type & PERF_SAMPLE_WEIGHT) | 802 | if (sample_type & PERF_SAMPLE_WEIGHT) |
803 | printf("... weight: %" PRIu64 "\n", sample->weight); | 803 | printf("... weight: %" PRIu64 "\n", sample->weight); |
804 | |||
805 | if (sample_type & PERF_SAMPLE_DATA_SRC) | ||
806 | printf(" . data_src: 0x%"PRIx64"\n", sample->data_src); | ||
804 | } | 807 | } |
805 | 808 | ||
806 | static struct machine * | 809 | static struct machine * |