]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
perf c2c: Fix c2c report for empty numa node
authorJiri Olsa <jolsa@redhat.com>
Tue, 5 Mar 2019 15:25:29 +0000 (16:25 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Apr 2019 20:32:57 +0000 (22:32 +0200)
[ Upstream commit e34c940245437f36d2c492edd1f8237eff391064 ]

Ravi Bangoria reported that we fail with an empty NUMA node with the
following message:

  $ lscpu
  NUMA node0 CPU(s):
  NUMA node1 CPU(s):   0-4

  $ sudo ./perf c2c report
  node/cpu topology bugFailed setup nodes

Fix this by detecting the empty node and keeping its CPU set empty.

Reported-by: Nageswara R Sastry <nasastry@in.ibm.com>
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Ravi Bangoria <ravi.bangoria@linux.ibm.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jonas Rabenstein <jonas.rabenstein@studium.uni-erlangen.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190305152536.21035-2-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
tools/perf/builtin-c2c.c

index f3aa9d02a5ab5d3cc5a78fd15d9d483fdbd64907..763c2edf52e7dd701f4ccdcb92e162f3a2bc942f 100644 (file)
@@ -2055,6 +2055,12 @@ static int setup_nodes(struct perf_session *session)
                if (!set)
                        return -ENOMEM;
 
+               nodes[node] = set;
+
+               /* empty node, skip */
+               if (cpu_map__empty(map))
+                       continue;
+
                for (cpu = 0; cpu < map->nr; cpu++) {
                        set_bit(map->map[cpu], set);
 
@@ -2063,8 +2069,6 @@ static int setup_nodes(struct perf_session *session)
 
                        cpu2node[map->map[cpu]] = node;
                }
-
-               nodes[node] = set;
        }
 
        setup_nodes_header();