From: Robert Richter Date: Fri, 9 Dec 2011 11:23:12 +0000 (+0100) Subject: perf tools: Add pmu mappings to header information X-Git-Tag: next-20111219~24^2^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c415f577eb32d80802311ebe9d51f06926c170c1;p=karo-tx-linux.git perf tools: Add pmu mappings to header information With dynamic pmu allocation there are also dynamically assigned pmu ids. These ids are used in event->attr.type to describe the pmu to be used for that event. The information is available in sysfs, e.g: /sys/bus/event_source/devices/breakpoint/type: 5 /sys/bus/event_source/devices/cpu/type: 4 /sys/bus/event_source/devices/ibs_fetch/type: 6 /sys/bus/event_source/devices/ibs_op/type: 7 /sys/bus/event_source/devices/software/type: 1 /sys/bus/event_source/devices/tracepoint/type: 2 These mappings are needed to know which samples belong to which pmu. If a pmu is added dynamically like for ibs_fetch or ibs_op the type value may vary. Now, when decoding samples from perf.data this information in sysfs might be no longer available or may have changed. We need to store it in perf.data. Using the header for this. The header information created with perf report would contain an additional section looking like this: # pmu mappings: ibs_op = 7, ibs_fetch = 6, cpu = 4, breakpoint = 5, tracepoint = 2, software = 1 Signed-off-by: Robert Richter --- diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 1e38c1084496..52dd7b49877e 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c @@ -988,6 +988,73 @@ done: return ret; } +#define EVENT_SOURCE_DEVICE_PATH "/sys/bus/event_source/devices/" + +/* + * File format: + * + * struct pmu_mappings { + * u32 pmu_num; + * struct pmu_map { + * u32 type; + * char name[]; + * }[pmu_num]; + * }; + */ + +static int write_pmu_mappings(int fd, struct perf_header *h __used, + struct perf_evlist *evlist __used) +{ + char path[MAXPATHLEN]; + DIR *dir; + struct dirent *dent; + FILE *fp; + char *line = NULL; + off_t offset = lseek(fd, 0, SEEK_CUR); + size_t ignore; + u32 pmu_num = 0; + u32 type; + + dir = opendir(EVENT_SOURCE_DEVICE_PATH); + if (!dir) + return -1; + + /* write real pmu_num later */ + do_write(fd, &pmu_num, sizeof(pmu_num)); + + while ((dent = readdir(dir))) { + if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..")) + continue; + snprintf(path, sizeof(path), "%s%s/type", + EVENT_SOURCE_DEVICE_PATH, dent->d_name); + fp = fopen(path, "r"); + if (!fp) + continue; + if (getline(&line, &ignore, fp) < 0) { + fclose(fp); + continue; + } + fclose(fp); + type = atoi(line); + if (!type) + continue; + pmu_num++; + do_write(fd, &type, sizeof(type)); + do_write_string(fd, dent->d_name); + } + + free(line); + closedir(dir); + + if (pwrite(fd, &pmu_num, sizeof(pmu_num), offset) != sizeof(pmu_num)) { + /* discard all */ + lseek(fd, offset, SEEK_SET); + return -1; + } + + return 0; +} + /* * default get_cpuid(): nothing gets recorded * actual implementation must be in arch/$(ARCH)/util/header.c @@ -1305,6 +1372,37 @@ static void print_cpuid(struct perf_header *ph, int fd, FILE *fp) free(str); } +static void print_pmu_mappings(struct perf_header *ph, int fd, FILE *fp) +{ + const char *delimiter = "# pmu mappings: "; + char *name; + int ret; + u32 pmu_num; + u32 type; + + ret = read(fd, &pmu_num, sizeof(pmu_num)); + if (ret != sizeof(pmu_num)) + goto error; + + if (!pmu_num) + goto error; + + while (pmu_num--) { + if (read(fd, &type, sizeof(type)) != sizeof(type)) + goto error; + name = do_read_string(fd, ph); + fprintf(fp, "%s%s = %" PRIu32, delimiter, name, type); + free(name); + delimiter = ", "; + } + + fprintf(fp, "\n"); + + return; +error: + fprintf(fp, "# pmu mappings: not available\n"); +} + static int __event_process_build_id(struct build_id_event *bev, char *filename, struct perf_session *session) @@ -1509,6 +1607,7 @@ static const struct feature_ops feat_ops[HEADER_LAST_FEATURE] = { FEAT_OPA(HEADER_CMDLINE, cmdline), FEAT_OPF(HEADER_CPU_TOPOLOGY, cpu_topology), FEAT_OPF(HEADER_NUMA_TOPOLOGY, numa_topology), + FEAT_OPA(HEADER_PMU_MAPPINGS, pmu_mappings), }; struct header_print_data { diff --git a/tools/perf/util/header.h b/tools/perf/util/header.h index e68f617d082f..9b4d40751b4a 100644 --- a/tools/perf/util/header.h +++ b/tools/perf/util/header.h @@ -27,6 +27,7 @@ enum { HEADER_EVENT_DESC, HEADER_CPU_TOPOLOGY, HEADER_NUMA_TOPOLOGY, + HEADER_PMU_MAPPINGS, HEADER_LAST_FEATURE, HEADER_FEAT_BITS = 256,