|
@@ -1127,6 +1127,30 @@ static void dump_sample(struct perf_evsel *evsel, union perf_event *event,
|
|
|
sample_read__printf(sample, evsel->attr.read_format);
|
|
|
}
|
|
|
|
|
|
+static void dump_read(struct perf_evsel *evsel, union perf_event *event)
|
|
|
+{
|
|
|
+ struct read_event *read_event = &event->read;
|
|
|
+ u64 read_format;
|
|
|
+
|
|
|
+ if (!dump_trace)
|
|
|
+ return;
|
|
|
+
|
|
|
+ printf(": %d %d %s %" PRIu64 "\n", event->read.pid, event->read.tid,
|
|
|
+ evsel ? perf_evsel__name(evsel) : "FAIL",
|
|
|
+ event->read.value);
|
|
|
+
|
|
|
+ read_format = evsel->attr.read_format;
|
|
|
+
|
|
|
+ if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
|
|
|
+ printf("... time enabled : %" PRIu64 "\n", read_event->time_enabled);
|
|
|
+
|
|
|
+ if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
|
|
|
+ printf("... time running : %" PRIu64 "\n", read_event->time_running);
|
|
|
+
|
|
|
+ if (read_format & PERF_FORMAT_ID)
|
|
|
+ printf("... id : %" PRIu64 "\n", read_event->id);
|
|
|
+}
|
|
|
+
|
|
|
static struct machine *machines__find_for_cpumode(struct machines *machines,
|
|
|
union perf_event *event,
|
|
|
struct perf_sample *sample)
|
|
@@ -1271,6 +1295,7 @@ static int machines__deliver_event(struct machines *machines,
|
|
|
evlist->stats.total_lost_samples += event->lost_samples.lost;
|
|
|
return tool->lost_samples(tool, event, sample, machine);
|
|
|
case PERF_RECORD_READ:
|
|
|
+ dump_read(evsel, event);
|
|
|
return tool->read(tool, event, sample, evsel, machine);
|
|
|
case PERF_RECORD_THROTTLE:
|
|
|
return tool->throttle(tool, event, sample, machine);
|