Skip to content

Commit

Permalink
perf tools: Remove redundant err variable
Browse files Browse the repository at this point in the history
Return value from perf_event__process_tracing_data() directly instead
of taking this in another redundant variable.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi <chi.minghao@zte.com.cn>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: http://lore.kernel.org/lkml/20220112080109.666800-1-chi.minghao@zte.com.cn
Signed-off-by: CGEL ZTE <cgel.zte@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Minghao Chi authored and Arnaldo Carvalho de Melo committed Jan 22, 2022
1 parent b4a7276 commit f0ac5b8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tools/perf/builtin-inject.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,12 +535,9 @@ static int perf_event__repipe_exit(struct perf_tool *tool,
static int perf_event__repipe_tracing_data(struct perf_session *session,
union perf_event *event)
{
int err;

perf_event__repipe_synth(session->tool, event);
err = perf_event__process_tracing_data(session, event);

return err;
return perf_event__process_tracing_data(session, event);
}

static int dso__read_build_id(struct dso *dso)
Expand Down

0 comments on commit f0ac5b8

Please sign in to comment.