]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
libperf: Add perf_cpu_map__for_each_cpu() macro
authorJiri Olsa <jolsa@kernel.org>
Sun, 21 Jul 2019 11:24:53 +0000 (13:24 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 29 Jul 2019 21:34:46 +0000 (18:34 -0300)
Add the following macro to libperf:

  perf_cpu_map__for_each_cpu()

And its related functions:

  perf_cpu_map__cpu()
  perf_cpu_map__nr()

That will allow hiding how it is implemented.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190721112506.12306-67-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/lib/cpumap.c
tools/perf/lib/include/perf/cpumap.h
tools/perf/lib/libperf.map

index a5d4f7ff71746a764286cff80b2b59df055e5f0f..1ddb69e796e5bbabfa7f5a26b5e12c8463c54db9 100644 (file)
@@ -224,3 +224,16 @@ invalid:
 out:
        return cpus;
 }
+
+int perf_cpu_map__cpu(const struct perf_cpu_map *cpus, int idx)
+{
+       if (idx < cpus->nr)
+               return cpus->map[idx];
+
+       return -1;
+}
+
+int perf_cpu_map__nr(const struct perf_cpu_map *cpus)
+{
+       return cpus ? cpus->nr : 1;
+}
index b4a9283a5dfa52a6394a6ceef2841d7c39913e59..1b6e7db3fa2b0c0ac6e03f5dbfa9f9ae35779616 100644 (file)
@@ -12,5 +12,12 @@ LIBPERF_API struct perf_cpu_map *perf_cpu_map__new(const char *cpu_list);
 LIBPERF_API struct perf_cpu_map *perf_cpu_map__read(FILE *file);
 LIBPERF_API struct perf_cpu_map *perf_cpu_map__get(struct perf_cpu_map *map);
 LIBPERF_API void perf_cpu_map__put(struct perf_cpu_map *map);
+LIBPERF_API int perf_cpu_map__cpu(const struct perf_cpu_map *cpus, int idx);
+LIBPERF_API int perf_cpu_map__nr(const struct perf_cpu_map *cpus);
+
+#define perf_cpu_map__for_each_cpu(cpu, idx, cpus)             \
+       for ((idx) = 0, (cpu) = perf_cpu_map__cpu(cpus, idx);   \
+            (idx) < perf_cpu_map__nr(cpus);                    \
+            (idx)++, (cpu) = perf_cpu_map__cpu(cpus, idx))
 
 #endif /* __LIBPERF_CPUMAP_H */
index 5bd491ac1762b37911f02f61306a2ce15217d9ba..d4d34bea0b4006af39122c026e9abcc30537017f 100644 (file)
@@ -6,6 +6,8 @@ LIBPERF_0.0.1 {
                perf_cpu_map__put;
                perf_cpu_map__new;
                perf_cpu_map__read;
+               perf_cpu_map__nr;
+               perf_cpu_map__cpu;
                perf_thread_map__new_dummy;
                perf_thread_map__set_pid;
                perf_thread_map__comm;