diff options
author | Peng Fan <[email protected]> | 2020-08-14 18:44:54 +0800 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2020-08-14 09:42:30 -0300 |
commit | a508d061ef04b163a85f55ba8a748c026f89da45 (patch) | |
tree | f826998c0d344a8dfd00baf1c629ab6201d43dc1 | |
parent | 8989f5f076051f3ceb1da083181b7d69808fff0e (diff) |
perf bench numa: Remove dead code in parse_nodes_opt()
In the function parse_nodes_opt(), the statement "return 0;" is dead
code, remove it.
Signed-off-by: Peng Fan <[email protected]>
Cc: Alexander Shishkin <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lore.kernel.org/lkml/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/perf/bench/numa.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/perf/bench/numa.c b/tools/perf/bench/numa.c index 6d5c890478cb..f85bceccc459 100644 --- a/tools/perf/bench/numa.c +++ b/tools/perf/bench/numa.c @@ -733,8 +733,6 @@ static int parse_nodes_opt(const struct option *opt __maybe_unused, return -1; return parse_node_list(arg); - - return 0; } #define BIT(x) (1ul << x) |