perf cpumap: Remove initializations done in perf_cpu_map__alloc()

When extracting this patch from Ian's original patch I forgot to remove
the setting of ->nr and ->refcnt, no need to do those initializations
again as those are done in perf_cpu_map__alloc() already, duh.

Cc: Ian Rogers <irogers@google.com>
Fixes: 1f94479e ("libperf: Make perf_cpu_map__alloc() available as an internal function for tools/perf to use")
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent a9b867f6
...@@ -163,13 +163,8 @@ struct perf_cpu_map *perf_cpu_map__empty_new(int nr) ...@@ -163,13 +163,8 @@ struct perf_cpu_map *perf_cpu_map__empty_new(int nr)
struct perf_cpu_map *cpus = perf_cpu_map__alloc(nr); struct perf_cpu_map *cpus = perf_cpu_map__alloc(nr);
if (cpus != NULL) { if (cpus != NULL) {
int i; for (int i = 0; i < nr; i++)
cpus->nr = nr;
for (i = 0; i < nr; i++)
cpus->map[i].cpu = -1; cpus->map[i].cpu = -1;
refcount_set(&cpus->refcnt, 1);
} }
return cpus; return cpus;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment