]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf tools: Add pmu mappings to header information
authorRobert Richter <robert.richter@amd.com>
Fri, 9 Dec 2011 11:23:12 +0000 (12:23 +0100)
committerRobert Richter <robert.richter@amd.com>
Thu, 15 Dec 2011 14:17:43 +0000 (15:17 +0100)
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 <robert.richter@amd.com>
tools/perf/util/header.c
tools/perf/util/header.h

index 1e38c108449648d60c25a20ffc0fd38bc7795dbd..52dd7b49877e3a7fadb6ff8865eb4d2870ece837 100644 (file)
@@ -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 {
index e68f617d082f5c77083b1fe755aa320b1ba10db2..9b4d40751b4aa4f766feb8c2658b20fcb3d2fbb5 100644 (file)
@@ -27,6 +27,7 @@ enum {
        HEADER_EVENT_DESC,
        HEADER_CPU_TOPOLOGY,
        HEADER_NUMA_TOPOLOGY,
+       HEADER_PMU_MAPPINGS,
 
        HEADER_LAST_FEATURE,
        HEADER_FEAT_BITS        = 256,