Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf cpu_map: Add more helpers

In some cases it's necessry to figure out the map-local index of a given
Linux logical CPU ID. Add a new helper, cpu_map__idx, to acquire this.
As the logic is largely the same as the existing cpu_map__has, this is
rewritten in terms of the new helper.

At the same time, add the inverse operation, cpu_map__cpu, which yields
the logical CPU id for a map-local index. While this can be performed
manually, wrapping this in a helper can make code more legible.

Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Kan Liang <kan.liang@intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/r/1468577293-19667-3-git-send-email-mark.rutland@arm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Mark Rutland and committed by
Arnaldo Carvalho de Melo
9a6c582d 00e727bb

+14 -2
+12 -2
tools/perf/util/cpumap.c
··· 589 589 590 590 bool cpu_map__has(struct cpu_map *cpus, int cpu) 591 591 { 592 + return cpu_map__idx(cpus, cpu) != -1; 593 + } 594 + 595 + int cpu_map__idx(struct cpu_map *cpus, int cpu) 596 + { 592 597 int i; 593 598 594 599 for (i = 0; i < cpus->nr; ++i) { 595 600 if (cpus->map[i] == cpu) 596 - return true; 601 + return i; 597 602 } 598 603 599 - return false; 604 + return -1; 605 + } 606 + 607 + int cpu_map__cpu(struct cpu_map *cpus, int idx) 608 + { 609 + return cpus->map[idx]; 600 610 } 601 611 602 612 size_t cpu_map__snprint(struct cpu_map *map, char *buf, size_t size)
+2
tools/perf/util/cpumap.h
··· 68 68 int (*f)(struct cpu_map *map, int cpu, void *data), 69 69 void *data); 70 70 71 + int cpu_map__cpu(struct cpu_map *cpus, int idx); 71 72 bool cpu_map__has(struct cpu_map *cpus, int cpu); 73 + int cpu_map__idx(struct cpu_map *cpus, int cpu); 72 74 #endif /* __PERF_CPUMAP_H */