Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Borislav Petkov | cd0cfad | 2013-12-09 17:14:24 +0100 | [diff] [blame] | 2 | #include <api/fs/fs.h> |
Paul Mackerras | a12b51c | 2010-03-10 20:36:09 +1100 | [diff] [blame] | 3 | #include "cpumap.h" |
Arnaldo Carvalho de Melo | 5e51b0b | 2019-08-22 10:48:31 -0300 | [diff] [blame] | 4 | #include "debug.h" |
| 5 | #include "event.h" |
Paul Mackerras | a12b51c | 2010-03-10 20:36:09 +1100 | [diff] [blame] | 6 | #include <assert.h> |
Arnaldo Carvalho de Melo | 76b31a2 | 2017-04-18 12:26:44 -0300 | [diff] [blame] | 7 | #include <dirent.h> |
Paul Mackerras | a12b51c | 2010-03-10 20:36:09 +1100 | [diff] [blame] | 8 | #include <stdio.h> |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 9 | #include <stdlib.h> |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 10 | #include <linux/bitmap.h> |
Jiri Olsa | f30a79b | 2015-06-23 00:36:04 +0200 | [diff] [blame] | 11 | #include "asm/bug.h" |
Paul Mackerras | a12b51c | 2010-03-10 20:36:09 +1100 | [diff] [blame] | 12 | |
Arnaldo Carvalho de Melo | 3052ba5 | 2019-06-25 17:27:31 -0300 | [diff] [blame] | 13 | #include <linux/ctype.h> |
Arnaldo Carvalho de Melo | 7f7c536 | 2019-07-04 11:32:27 -0300 | [diff] [blame] | 14 | #include <linux/zalloc.h> |
Arnaldo Carvalho de Melo | 3d689ed | 2017-04-17 16:10:49 -0300 | [diff] [blame] | 15 | |
Arnaldo Carvalho de Melo | 5ac7628 | 2016-01-26 15:51:46 -0300 | [diff] [blame] | 16 | static int max_cpu_num; |
Jan Stancek | 92a7e12 | 2017-02-17 12:10:24 +0100 | [diff] [blame] | 17 | static int max_present_cpu_num; |
Arnaldo Carvalho de Melo | 5ac7628 | 2016-01-26 15:51:46 -0300 | [diff] [blame] | 18 | static int max_node_num; |
| 19 | static int *cpunode_map; |
| 20 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 21 | static struct perf_cpu_map *cpu_map__from_entries(struct cpu_map_entries *cpus) |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 22 | { |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 23 | struct perf_cpu_map *map; |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 24 | |
Jiri Olsa | 315c0a1 | 2019-08-22 13:11:39 +0200 | [diff] [blame] | 25 | map = perf_cpu_map__empty_new(cpus->nr); |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 26 | if (map) { |
| 27 | unsigned i; |
| 28 | |
Jiri Olsa | 15d2b99 | 2016-01-06 11:49:55 +0100 | [diff] [blame] | 29 | for (i = 0; i < cpus->nr; i++) { |
| 30 | /* |
| 31 | * Special treatment for -1, which is not real cpu number, |
| 32 | * and we need to use (int) -1 to initialize map[i], |
| 33 | * otherwise it would become 65535. |
| 34 | */ |
| 35 | if (cpus->cpu[i] == (u16) -1) |
| 36 | map->map[i] = -1; |
| 37 | else |
| 38 | map->map[i] = (int) cpus->cpu[i]; |
| 39 | } |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | return map; |
| 43 | } |
| 44 | |
Jiri Olsa | 7293237 | 2019-08-28 15:57:16 +0200 | [diff] [blame] | 45 | static struct perf_cpu_map *cpu_map__from_mask(struct perf_record_record_cpu_map *mask) |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 46 | { |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 47 | struct perf_cpu_map *map; |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 48 | int nr, nbits = mask->nr * mask->long_size * BITS_PER_BYTE; |
| 49 | |
| 50 | nr = bitmap_weight(mask->mask, nbits); |
| 51 | |
Jiri Olsa | 315c0a1 | 2019-08-22 13:11:39 +0200 | [diff] [blame] | 52 | map = perf_cpu_map__empty_new(nr); |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 53 | if (map) { |
| 54 | int cpu, i = 0; |
| 55 | |
| 56 | for_each_set_bit(cpu, mask->mask, nbits) |
| 57 | map->map[i++] = cpu; |
| 58 | } |
| 59 | return map; |
| 60 | |
| 61 | } |
| 62 | |
Jiri Olsa | 7293237 | 2019-08-28 15:57:16 +0200 | [diff] [blame] | 63 | struct perf_cpu_map *cpu_map__new_data(struct perf_record_cpu_map_data *data) |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 64 | { |
| 65 | if (data->type == PERF_CPU_MAP__CPUS) |
| 66 | return cpu_map__from_entries((struct cpu_map_entries *)data->data); |
| 67 | else |
Jiri Olsa | 7293237 | 2019-08-28 15:57:16 +0200 | [diff] [blame] | 68 | return cpu_map__from_mask((struct perf_record_record_cpu_map *)data->data); |
Jiri Olsa | f77b57a | 2015-10-25 15:51:25 +0100 | [diff] [blame] | 69 | } |
| 70 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 71 | size_t cpu_map__fprintf(struct perf_cpu_map *map, FILE *fp) |
Arnaldo Carvalho de Melo | 9ae7d33 | 2012-01-19 14:07:23 -0200 | [diff] [blame] | 72 | { |
Jiri Olsa | a24020e | 2016-06-28 13:29:04 +0200 | [diff] [blame] | 73 | #define BUFSIZE 1024 |
| 74 | char buf[BUFSIZE]; |
Arnaldo Carvalho de Melo | 9ae7d33 | 2012-01-19 14:07:23 -0200 | [diff] [blame] | 75 | |
Jiri Olsa | a24020e | 2016-06-28 13:29:04 +0200 | [diff] [blame] | 76 | cpu_map__snprint(map, buf, sizeof(buf)); |
| 77 | return fprintf(fp, "%s\n", buf); |
| 78 | #undef BUFSIZE |
Arnaldo Carvalho de Melo | 9ae7d33 | 2012-01-19 14:07:23 -0200 | [diff] [blame] | 79 | } |
| 80 | |
Jiri Olsa | 315c0a1 | 2019-08-22 13:11:39 +0200 | [diff] [blame] | 81 | struct perf_cpu_map *perf_cpu_map__empty_new(int nr) |
Jiri Olsa | 2322f57 | 2015-10-25 15:51:17 +0100 | [diff] [blame] | 82 | { |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 83 | struct perf_cpu_map *cpus = malloc(sizeof(*cpus) + sizeof(int) * nr); |
Jiri Olsa | 2322f57 | 2015-10-25 15:51:17 +0100 | [diff] [blame] | 84 | |
| 85 | if (cpus != NULL) { |
| 86 | int i; |
| 87 | |
| 88 | cpus->nr = nr; |
| 89 | for (i = 0; i < nr; i++) |
| 90 | cpus->map[i] = -1; |
| 91 | |
Elena Reshetova | ec09a42 | 2017-02-21 17:34:56 +0200 | [diff] [blame] | 92 | refcount_set(&cpus->refcnt, 1); |
Jiri Olsa | 2322f57 | 2015-10-25 15:51:17 +0100 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | return cpus; |
| 96 | } |
| 97 | |
James Clark | cea6575 | 2020-11-26 16:13:21 +0200 | [diff] [blame] | 98 | struct cpu_aggr_map *cpu_aggr_map__empty_new(int nr) |
| 99 | { |
James Clark | ff52329 | 2020-11-26 16:13:23 +0200 | [diff] [blame] | 100 | struct cpu_aggr_map *cpus = malloc(sizeof(*cpus) + sizeof(struct aggr_cpu_id) * nr); |
James Clark | cea6575 | 2020-11-26 16:13:21 +0200 | [diff] [blame] | 101 | |
| 102 | if (cpus != NULL) { |
| 103 | int i; |
| 104 | |
| 105 | cpus->nr = nr; |
| 106 | for (i = 0; i < nr; i++) |
James Clark | ff52329 | 2020-11-26 16:13:23 +0200 | [diff] [blame] | 107 | cpus->map[i] = cpu_map__empty_aggr_cpu_id(); |
James Clark | cea6575 | 2020-11-26 16:13:21 +0200 | [diff] [blame] | 108 | |
| 109 | refcount_set(&cpus->refcnt, 1); |
| 110 | } |
| 111 | |
| 112 | return cpus; |
| 113 | } |
| 114 | |
Arnaldo Carvalho de Melo | 5d8cf72 | 2015-09-11 10:49:45 -0300 | [diff] [blame] | 115 | static int cpu__get_topology_int(int cpu, const char *name, int *value) |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 116 | { |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 117 | char path[PATH_MAX]; |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 118 | |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 119 | snprintf(path, PATH_MAX, |
Arnaldo Carvalho de Melo | 5d8cf72 | 2015-09-11 10:49:45 -0300 | [diff] [blame] | 120 | "devices/system/cpu/cpu%d/topology/%s", cpu, name); |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 121 | |
Arnaldo Carvalho de Melo | 5d8cf72 | 2015-09-11 10:49:45 -0300 | [diff] [blame] | 122 | return sysfs__read_int(path, value); |
| 123 | } |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 124 | |
Arnaldo Carvalho de Melo | 5d8cf72 | 2015-09-11 10:49:45 -0300 | [diff] [blame] | 125 | int cpu_map__get_socket_id(int cpu) |
| 126 | { |
| 127 | int value, ret = cpu__get_topology_int(cpu, "physical_package_id", &value); |
| 128 | return ret ?: value; |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 129 | } |
| 130 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 131 | struct aggr_cpu_id cpu_map__get_socket(struct perf_cpu_map *map, int idx, |
| 132 | void *data __maybe_unused) |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 133 | { |
| 134 | int cpu; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 135 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 136 | |
| 137 | if (idx > map->nr) |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 138 | return id; |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 139 | |
| 140 | cpu = map->map[idx]; |
| 141 | |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 142 | id.socket = cpu_map__get_socket_id(cpu); |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 143 | return id; |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 144 | } |
| 145 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 146 | static int cmp_aggr_cpu_id(const void *a_pointer, const void *b_pointer) |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 147 | { |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 148 | struct aggr_cpu_id *a = (struct aggr_cpu_id *)a_pointer; |
| 149 | struct aggr_cpu_id *b = (struct aggr_cpu_id *)b_pointer; |
| 150 | |
James Clark | 8d4852b | 2020-11-26 16:13:28 +0200 | [diff] [blame] | 151 | if (a->node != b->node) |
James Clark | fcd83a3 | 2020-11-26 16:13:24 +0200 | [diff] [blame] | 152 | return a->node - b->node; |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 153 | else if (a->socket != b->socket) |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 154 | return a->socket - b->socket; |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 155 | else if (a->die != b->die) |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 156 | return a->die - b->die; |
James Clark | 8d4852b | 2020-11-26 16:13:28 +0200 | [diff] [blame] | 157 | else if (a->core != b->core) |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 158 | return a->core - b->core; |
James Clark | 8d4852b | 2020-11-26 16:13:28 +0200 | [diff] [blame] | 159 | else |
| 160 | return a->thread - b->thread; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 161 | } |
| 162 | |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 163 | int cpu_map__build_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **res, |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 164 | struct aggr_cpu_id (*f)(struct perf_cpu_map *map, int cpu, void *data), |
Jiri Olsa | 1fe7a30 | 2015-10-16 12:41:15 +0200 | [diff] [blame] | 165 | void *data) |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 166 | { |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 167 | int nr = cpus->nr; |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 168 | struct cpu_aggr_map *c = cpu_aggr_map__empty_new(nr); |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 169 | int cpu, s2; |
| 170 | struct aggr_cpu_id s1; |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 171 | |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 172 | if (!c) |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 173 | return -1; |
| 174 | |
James Clark | 9158584 | 2020-11-26 16:13:18 +0200 | [diff] [blame] | 175 | /* Reset size as it may only be partially filled */ |
| 176 | c->nr = 0; |
| 177 | |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 178 | for (cpu = 0; cpu < nr; cpu++) { |
Jiri Olsa | 1fe7a30 | 2015-10-16 12:41:15 +0200 | [diff] [blame] | 179 | s1 = f(cpus, cpu, data); |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 180 | for (s2 = 0; s2 < c->nr; s2++) { |
James Clark | ff52329 | 2020-11-26 16:13:23 +0200 | [diff] [blame] | 181 | if (cpu_map__compare_aggr_cpu_id(s1, c->map[s2])) |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 182 | break; |
| 183 | } |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 184 | if (s2 == c->nr) { |
James Clark | ff52329 | 2020-11-26 16:13:23 +0200 | [diff] [blame] | 185 | c->map[c->nr] = s1; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 186 | c->nr++; |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 187 | } |
| 188 | } |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 189 | /* ensure we process id in increasing order */ |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 190 | qsort(c->map, c->nr, sizeof(struct aggr_cpu_id), cmp_aggr_cpu_id); |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 191 | |
| 192 | *res = c; |
Stephane Eranian | 5ac59a8 | 2013-02-06 15:46:01 +0100 | [diff] [blame] | 193 | return 0; |
| 194 | } |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 195 | |
Kan Liang | b74d868 | 2019-06-04 15:50:40 -0700 | [diff] [blame] | 196 | int cpu_map__get_die_id(int cpu) |
| 197 | { |
| 198 | int value, ret = cpu__get_topology_int(cpu, "die_id", &value); |
| 199 | |
| 200 | return ret ?: value; |
| 201 | } |
| 202 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 203 | struct aggr_cpu_id cpu_map__get_die(struct perf_cpu_map *map, int idx, void *data) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 204 | { |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 205 | int cpu, die; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 206 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 207 | |
| 208 | if (idx > map->nr) |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 209 | return id; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 210 | |
| 211 | cpu = map->map[idx]; |
| 212 | |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 213 | die = cpu_map__get_die_id(cpu); |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 214 | /* There is no die_id on legacy system. */ |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 215 | if (die == -1) |
| 216 | die = 0; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 217 | |
| 218 | /* |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 219 | * die_id is relative to socket, so start |
| 220 | * with the socket ID and then add die to |
| 221 | * make a unique ID. |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 222 | */ |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 223 | id = cpu_map__get_socket(map, idx, data); |
| 224 | if (cpu_map__aggr_cpu_id_is_empty(id)) |
| 225 | return id; |
| 226 | |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 227 | id.die = die; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 228 | return id; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 231 | int cpu_map__get_core_id(int cpu) |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 232 | { |
Arnaldo Carvalho de Melo | 5d8cf72 | 2015-09-11 10:49:45 -0300 | [diff] [blame] | 233 | int value, ret = cpu__get_topology_int(cpu, "core_id", &value); |
| 234 | return ret ?: value; |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 235 | } |
| 236 | |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 237 | int cpu_map__get_node_id(int cpu) |
| 238 | { |
| 239 | return cpu__get_node(cpu); |
| 240 | } |
| 241 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 242 | struct aggr_cpu_id cpu_map__get_core(struct perf_cpu_map *map, int idx, void *data) |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 243 | { |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 244 | int cpu; |
| 245 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 246 | |
| 247 | if (idx > map->nr) |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 248 | return id; |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 249 | |
Kan Liang | 193b6bd | 2015-09-01 09:58:11 -0400 | [diff] [blame] | 250 | cpu = map->map[idx]; |
| 251 | |
| 252 | cpu = cpu_map__get_core_id(cpu); |
| 253 | |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 254 | /* cpu_map__get_die returns a struct with socket and die set*/ |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 255 | id = cpu_map__get_die(map, idx, data); |
| 256 | if (cpu_map__aggr_cpu_id_is_empty(id)) |
| 257 | return id; |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 258 | |
| 259 | /* |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 260 | * core_id is relative to socket and die, we need a global id. |
| 261 | * So we combine the result from cpu_map__get_die with the core id |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 262 | */ |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 263 | id.core = cpu; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 264 | return id; |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 265 | } |
| 266 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 267 | struct aggr_cpu_id cpu_map__get_node(struct perf_cpu_map *map, int idx, void *data __maybe_unused) |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 268 | { |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 269 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 270 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 271 | if (idx < 0 || idx >= map->nr) |
| 272 | return id; |
| 273 | |
James Clark | fcd83a3 | 2020-11-26 16:13:24 +0200 | [diff] [blame] | 274 | id.node = cpu_map__get_node_id(map->map[idx]); |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 275 | return id; |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 276 | } |
| 277 | |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 278 | int cpu_map__build_socket_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **sockp) |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 279 | { |
Jiri Olsa | 1fe7a30 | 2015-10-16 12:41:15 +0200 | [diff] [blame] | 280 | return cpu_map__build_map(cpus, sockp, cpu_map__get_socket, NULL); |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 281 | } |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 282 | |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 283 | int cpu_map__build_die_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **diep) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 284 | { |
| 285 | return cpu_map__build_map(cpus, diep, cpu_map__get_die, NULL); |
| 286 | } |
| 287 | |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 288 | int cpu_map__build_core_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **corep) |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 289 | { |
Jiri Olsa | 1fe7a30 | 2015-10-16 12:41:15 +0200 | [diff] [blame] | 290 | return cpu_map__build_map(cpus, corep, cpu_map__get_core, NULL); |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 291 | } |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 292 | |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 293 | int cpu_map__build_node_map(struct perf_cpu_map *cpus, struct cpu_aggr_map **numap) |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 294 | { |
| 295 | return cpu_map__build_map(cpus, numap, cpu_map__get_node, NULL); |
| 296 | } |
| 297 | |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 298 | /* setup simple routines to easily access node numbers given a cpu number */ |
| 299 | static int get_max_num(char *path, int *max) |
| 300 | { |
| 301 | size_t num; |
| 302 | char *buf; |
| 303 | int err = 0; |
| 304 | |
| 305 | if (filename__read_str(path, &buf, &num)) |
| 306 | return -1; |
| 307 | |
| 308 | buf[num] = '\0'; |
| 309 | |
| 310 | /* start on the right, to find highest node num */ |
| 311 | while (--num) { |
| 312 | if ((buf[num] == ',') || (buf[num] == '-')) { |
| 313 | num++; |
| 314 | break; |
| 315 | } |
| 316 | } |
| 317 | if (sscanf(&buf[num], "%d", max) < 1) { |
| 318 | err = -1; |
| 319 | goto out; |
| 320 | } |
| 321 | |
| 322 | /* convert from 0-based to 1-based */ |
| 323 | (*max)++; |
| 324 | |
| 325 | out: |
| 326 | free(buf); |
| 327 | return err; |
| 328 | } |
| 329 | |
| 330 | /* Determine highest possible cpu in the system for sparse allocation */ |
| 331 | static void set_max_cpu_num(void) |
| 332 | { |
| 333 | const char *mnt; |
| 334 | char path[PATH_MAX]; |
| 335 | int ret = -1; |
| 336 | |
| 337 | /* set up default */ |
| 338 | max_cpu_num = 4096; |
Jan Stancek | 92a7e12 | 2017-02-17 12:10:24 +0100 | [diff] [blame] | 339 | max_present_cpu_num = 4096; |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 340 | |
| 341 | mnt = sysfs__mountpoint(); |
| 342 | if (!mnt) |
| 343 | goto out; |
| 344 | |
| 345 | /* get the highest possible cpu number for a sparse allocation */ |
Don Zickus | f5b1f4e | 2014-04-07 14:55:22 -0400 | [diff] [blame] | 346 | ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/possible", mnt); |
Christophe JAILLET | d74b181 | 2020-03-24 08:03:19 +0100 | [diff] [blame] | 347 | if (ret >= PATH_MAX) { |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 348 | pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX); |
| 349 | goto out; |
| 350 | } |
| 351 | |
| 352 | ret = get_max_num(path, &max_cpu_num); |
Jan Stancek | 92a7e12 | 2017-02-17 12:10:24 +0100 | [diff] [blame] | 353 | if (ret) |
| 354 | goto out; |
| 355 | |
| 356 | /* get the highest present cpu number for a sparse allocation */ |
| 357 | ret = snprintf(path, PATH_MAX, "%s/devices/system/cpu/present", mnt); |
Christophe JAILLET | d74b181 | 2020-03-24 08:03:19 +0100 | [diff] [blame] | 358 | if (ret >= PATH_MAX) { |
Jan Stancek | 92a7e12 | 2017-02-17 12:10:24 +0100 | [diff] [blame] | 359 | pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX); |
| 360 | goto out; |
| 361 | } |
| 362 | |
| 363 | ret = get_max_num(path, &max_present_cpu_num); |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 364 | |
| 365 | out: |
| 366 | if (ret) |
| 367 | pr_err("Failed to read max cpus, using default of %d\n", max_cpu_num); |
| 368 | } |
| 369 | |
| 370 | /* Determine highest possible node in the system for sparse allocation */ |
| 371 | static void set_max_node_num(void) |
| 372 | { |
| 373 | const char *mnt; |
| 374 | char path[PATH_MAX]; |
| 375 | int ret = -1; |
| 376 | |
| 377 | /* set up default */ |
| 378 | max_node_num = 8; |
| 379 | |
| 380 | mnt = sysfs__mountpoint(); |
| 381 | if (!mnt) |
| 382 | goto out; |
| 383 | |
| 384 | /* get the highest possible cpu number for a sparse allocation */ |
| 385 | ret = snprintf(path, PATH_MAX, "%s/devices/system/node/possible", mnt); |
Christophe JAILLET | d74b181 | 2020-03-24 08:03:19 +0100 | [diff] [blame] | 386 | if (ret >= PATH_MAX) { |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 387 | pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX); |
| 388 | goto out; |
| 389 | } |
| 390 | |
| 391 | ret = get_max_num(path, &max_node_num); |
| 392 | |
| 393 | out: |
| 394 | if (ret) |
| 395 | pr_err("Failed to read max nodes, using default of %d\n", max_node_num); |
| 396 | } |
| 397 | |
Arnaldo Carvalho de Melo | 5ac7628 | 2016-01-26 15:51:46 -0300 | [diff] [blame] | 398 | int cpu__max_node(void) |
| 399 | { |
| 400 | if (unlikely(!max_node_num)) |
| 401 | set_max_node_num(); |
| 402 | |
| 403 | return max_node_num; |
| 404 | } |
| 405 | |
| 406 | int cpu__max_cpu(void) |
| 407 | { |
| 408 | if (unlikely(!max_cpu_num)) |
| 409 | set_max_cpu_num(); |
| 410 | |
| 411 | return max_cpu_num; |
| 412 | } |
| 413 | |
Jan Stancek | 92a7e12 | 2017-02-17 12:10:24 +0100 | [diff] [blame] | 414 | int cpu__max_present_cpu(void) |
| 415 | { |
| 416 | if (unlikely(!max_present_cpu_num)) |
| 417 | set_max_cpu_num(); |
| 418 | |
| 419 | return max_present_cpu_num; |
| 420 | } |
| 421 | |
| 422 | |
Arnaldo Carvalho de Melo | 5ac7628 | 2016-01-26 15:51:46 -0300 | [diff] [blame] | 423 | int cpu__get_node(int cpu) |
| 424 | { |
| 425 | if (unlikely(cpunode_map == NULL)) { |
| 426 | pr_debug("cpu_map not initialized\n"); |
| 427 | return -1; |
| 428 | } |
| 429 | |
| 430 | return cpunode_map[cpu]; |
| 431 | } |
| 432 | |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 433 | static int init_cpunode_map(void) |
| 434 | { |
| 435 | int i; |
| 436 | |
| 437 | set_max_cpu_num(); |
| 438 | set_max_node_num(); |
| 439 | |
| 440 | cpunode_map = calloc(max_cpu_num, sizeof(int)); |
| 441 | if (!cpunode_map) { |
| 442 | pr_err("%s: calloc failed\n", __func__); |
| 443 | return -1; |
| 444 | } |
| 445 | |
| 446 | for (i = 0; i < max_cpu_num; i++) |
| 447 | cpunode_map[i] = -1; |
| 448 | |
| 449 | return 0; |
| 450 | } |
| 451 | |
| 452 | int cpu__setup_cpunode_map(void) |
| 453 | { |
| 454 | struct dirent *dent1, *dent2; |
| 455 | DIR *dir1, *dir2; |
| 456 | unsigned int cpu, mem; |
| 457 | char buf[PATH_MAX]; |
| 458 | char path[PATH_MAX]; |
| 459 | const char *mnt; |
| 460 | int n; |
| 461 | |
| 462 | /* initialize globals */ |
| 463 | if (init_cpunode_map()) |
| 464 | return -1; |
| 465 | |
| 466 | mnt = sysfs__mountpoint(); |
| 467 | if (!mnt) |
| 468 | return 0; |
| 469 | |
| 470 | n = snprintf(path, PATH_MAX, "%s/devices/system/node", mnt); |
Christophe JAILLET | d74b181 | 2020-03-24 08:03:19 +0100 | [diff] [blame] | 471 | if (n >= PATH_MAX) { |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 472 | pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX); |
| 473 | return -1; |
| 474 | } |
| 475 | |
| 476 | dir1 = opendir(path); |
| 477 | if (!dir1) |
| 478 | return 0; |
| 479 | |
| 480 | /* walk tree and setup map */ |
| 481 | while ((dent1 = readdir(dir1)) != NULL) { |
| 482 | if (dent1->d_type != DT_DIR || sscanf(dent1->d_name, "node%u", &mem) < 1) |
| 483 | continue; |
| 484 | |
| 485 | n = snprintf(buf, PATH_MAX, "%s/%s", path, dent1->d_name); |
Christophe JAILLET | d74b181 | 2020-03-24 08:03:19 +0100 | [diff] [blame] | 486 | if (n >= PATH_MAX) { |
Don Zickus | 7780c25 | 2014-04-07 14:55:21 -0400 | [diff] [blame] | 487 | pr_err("sysfs path crossed PATH_MAX(%d) size\n", PATH_MAX); |
| 488 | continue; |
| 489 | } |
| 490 | |
| 491 | dir2 = opendir(buf); |
| 492 | if (!dir2) |
| 493 | continue; |
| 494 | while ((dent2 = readdir(dir2)) != NULL) { |
| 495 | if (dent2->d_type != DT_LNK || sscanf(dent2->d_name, "cpu%u", &cpu) < 1) |
| 496 | continue; |
| 497 | cpunode_map[cpu] = mem; |
| 498 | } |
| 499 | closedir(dir2); |
| 500 | } |
| 501 | closedir(dir1); |
| 502 | return 0; |
| 503 | } |
Jiri Olsa | e632aa6 | 2016-04-12 15:29:25 +0200 | [diff] [blame] | 504 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 505 | bool cpu_map__has(struct perf_cpu_map *cpus, int cpu) |
Jiri Olsa | e632aa6 | 2016-04-12 15:29:25 +0200 | [diff] [blame] | 506 | { |
Jiri Olsa | b4df75d | 2019-08-22 13:11:40 +0200 | [diff] [blame] | 507 | return perf_cpu_map__idx(cpus, cpu) != -1; |
Mark Rutland | 9a6c582 | 2016-07-15 11:08:11 +0100 | [diff] [blame] | 508 | } |
| 509 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 510 | int cpu_map__cpu(struct perf_cpu_map *cpus, int idx) |
Mark Rutland | 9a6c582 | 2016-07-15 11:08:11 +0100 | [diff] [blame] | 511 | { |
| 512 | return cpus->map[idx]; |
Jiri Olsa | e632aa6 | 2016-04-12 15:29:25 +0200 | [diff] [blame] | 513 | } |
Jiri Olsa | a24020e | 2016-06-28 13:29:04 +0200 | [diff] [blame] | 514 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 515 | size_t cpu_map__snprint(struct perf_cpu_map *map, char *buf, size_t size) |
Jiri Olsa | a24020e | 2016-06-28 13:29:04 +0200 | [diff] [blame] | 516 | { |
| 517 | int i, cpu, start = -1; |
| 518 | bool first = true; |
| 519 | size_t ret = 0; |
| 520 | |
| 521 | #define COMMA first ? "" : "," |
| 522 | |
| 523 | for (i = 0; i < map->nr + 1; i++) { |
| 524 | bool last = i == map->nr; |
| 525 | |
| 526 | cpu = last ? INT_MAX : map->map[i]; |
| 527 | |
| 528 | if (start == -1) { |
| 529 | start = i; |
| 530 | if (last) { |
| 531 | ret += snprintf(buf + ret, size - ret, |
| 532 | "%s%d", COMMA, |
| 533 | map->map[i]); |
| 534 | } |
| 535 | } else if (((i - start) != (cpu - map->map[start])) || last) { |
| 536 | int end = i - 1; |
| 537 | |
| 538 | if (start == end) { |
| 539 | ret += snprintf(buf + ret, size - ret, |
| 540 | "%s%d", COMMA, |
| 541 | map->map[start]); |
| 542 | } else { |
| 543 | ret += snprintf(buf + ret, size - ret, |
| 544 | "%s%d-%d", COMMA, |
| 545 | map->map[start], map->map[end]); |
| 546 | } |
| 547 | first = false; |
| 548 | start = i; |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | #undef COMMA |
| 553 | |
Jiri Olsa | deb83da | 2019-02-20 13:27:59 +0100 | [diff] [blame] | 554 | pr_debug2("cpumask list: %s\n", buf); |
Jiri Olsa | a24020e | 2016-06-28 13:29:04 +0200 | [diff] [blame] | 555 | return ret; |
| 556 | } |
Namhyung Kim | 4400ac8 | 2017-02-24 10:12:49 +0900 | [diff] [blame] | 557 | |
| 558 | static char hex_char(unsigned char val) |
| 559 | { |
| 560 | if (val < 10) |
| 561 | return val + '0'; |
| 562 | if (val < 16) |
| 563 | return val - 10 + 'a'; |
| 564 | return '?'; |
| 565 | } |
| 566 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 567 | size_t cpu_map__snprint_mask(struct perf_cpu_map *map, char *buf, size_t size) |
Namhyung Kim | 4400ac8 | 2017-02-24 10:12:49 +0900 | [diff] [blame] | 568 | { |
| 569 | int i, cpu; |
| 570 | char *ptr = buf; |
| 571 | unsigned char *bitmap; |
| 572 | int last_cpu = cpu_map__cpu(map, map->nr - 1); |
| 573 | |
He Zhe | 5f5e25f1 | 2019-08-02 16:29:52 +0800 | [diff] [blame] | 574 | if (buf == NULL) |
| 575 | return 0; |
| 576 | |
| 577 | bitmap = zalloc(last_cpu / 8 + 1); |
Namhyung Kim | 4400ac8 | 2017-02-24 10:12:49 +0900 | [diff] [blame] | 578 | if (bitmap == NULL) { |
| 579 | buf[0] = '\0'; |
| 580 | return 0; |
| 581 | } |
| 582 | |
| 583 | for (i = 0; i < map->nr; i++) { |
| 584 | cpu = cpu_map__cpu(map, i); |
| 585 | bitmap[cpu / 8] |= 1 << (cpu % 8); |
| 586 | } |
| 587 | |
| 588 | for (cpu = last_cpu / 4 * 4; cpu >= 0; cpu -= 4) { |
| 589 | unsigned char bits = bitmap[cpu / 8]; |
| 590 | |
| 591 | if (cpu % 8) |
| 592 | bits >>= 4; |
| 593 | else |
| 594 | bits &= 0xf; |
| 595 | |
| 596 | *ptr++ = hex_char(bits); |
| 597 | if ((cpu % 32) == 0 && cpu > 0) |
| 598 | *ptr++ = ','; |
| 599 | } |
| 600 | *ptr = '\0'; |
| 601 | free(bitmap); |
| 602 | |
| 603 | buf[size - 1] = '\0'; |
| 604 | return ptr - buf; |
| 605 | } |
Alexey Budankov | f13de66 | 2019-01-22 20:50:57 +0300 | [diff] [blame] | 606 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 607 | const struct perf_cpu_map *cpu_map__online(void) /* thread unsafe */ |
Alexey Budankov | f13de66 | 2019-01-22 20:50:57 +0300 | [diff] [blame] | 608 | { |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 609 | static const struct perf_cpu_map *online = NULL; |
Alexey Budankov | f13de66 | 2019-01-22 20:50:57 +0300 | [diff] [blame] | 610 | |
| 611 | if (!online) |
Jiri Olsa | 9c3516d | 2019-07-21 13:24:30 +0200 | [diff] [blame] | 612 | online = perf_cpu_map__new(NULL); /* from /sys/devices/system/cpu/online */ |
Alexey Budankov | f13de66 | 2019-01-22 20:50:57 +0300 | [diff] [blame] | 613 | |
| 614 | return online; |
| 615 | } |
James Clark | fa265e5 | 2020-11-26 16:13:19 +0200 | [diff] [blame] | 616 | |
| 617 | bool cpu_map__compare_aggr_cpu_id(struct aggr_cpu_id a, struct aggr_cpu_id b) |
| 618 | { |
James Clark | 8d4852b | 2020-11-26 16:13:28 +0200 | [diff] [blame] | 619 | return a.thread == b.thread && |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 620 | a.node == b.node && |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 621 | a.socket == b.socket && |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 622 | a.die == b.die && |
| 623 | a.core == b.core; |
James Clark | fa265e5 | 2020-11-26 16:13:19 +0200 | [diff] [blame] | 624 | } |
| 625 | |
| 626 | bool cpu_map__aggr_cpu_id_is_empty(struct aggr_cpu_id a) |
| 627 | { |
James Clark | 8d4852b | 2020-11-26 16:13:28 +0200 | [diff] [blame] | 628 | return a.thread == -1 && |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 629 | a.node == -1 && |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 630 | a.socket == -1 && |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 631 | a.die == -1 && |
| 632 | a.core == -1; |
James Clark | fa265e5 | 2020-11-26 16:13:19 +0200 | [diff] [blame] | 633 | } |
| 634 | |
| 635 | struct aggr_cpu_id cpu_map__empty_aggr_cpu_id(void) |
| 636 | { |
| 637 | struct aggr_cpu_id ret = { |
James Clark | 8d4852b | 2020-11-26 16:13:28 +0200 | [diff] [blame] | 638 | .thread = -1, |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 639 | .node = -1, |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 640 | .socket = -1, |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 641 | .die = -1, |
| 642 | .core = -1 |
James Clark | fa265e5 | 2020-11-26 16:13:19 +0200 | [diff] [blame] | 643 | }; |
| 644 | return ret; |
| 645 | } |