Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf bpf-loader: use PTR_ERR_OR_ZERO inetead of return code

Use PTR_ERR_OR_ZERO() in bpf__setup_stdout() return code instead of open
coded equivalent.

Signed-off-by: Ding Xiang <dingxiang@cmss.chinamobile.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1536284082-23466-2-git-send-email-dingxiang@cmss.chinamobile.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Ding Xiang and committed by
Arnaldo Carvalho de Melo
e381d1c2 01ab2e91

+1 -1
+1 -1
tools/perf/util/bpf-loader.c
··· 1615 1615 int bpf__setup_stdout(struct perf_evlist *evlist) 1616 1616 { 1617 1617 struct perf_evsel *evsel = bpf__setup_output_event(evlist, "__bpf_stdout__"); 1618 - return IS_ERR(evsel) ? PTR_ERR(evsel) : 0; 1618 + return PTR_ERR_OR_ZERO(evsel); 1619 1619 } 1620 1620 1621 1621 #define ERRNO_OFFSET(e) ((e) - __BPF_LOADER_ERRNO__START)