| From 1673419bfacac4a45c81d3adaa4b231713882e49 Mon Sep 17 00:00:00 2001 |
| From: Changbin Du <changbin.du@gmail.com> |
| Date: Sat, 16 Mar 2019 16:05:43 +0800 |
| Subject: perf tools: Fix errors under optimization level '-Og' |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| [ Upstream commit 11c1ea6f1a9bc97bf857fd12f72eacb6c69794e2 ] |
| |
| Optimization level '-Og' offers a reasonable level of optimization while |
| maintaining fast compilation and a good debugging experience. This patch |
| tries to make it work. |
| |
| $ make DEBUG=1 EXTRA_CFLAGS='-Og' |
| bench/epoll-ctl.c: In function ‘do_threads’: |
| bench/epoll-ctl.c:274:9: error: ‘ret’ may be used uninitialized in this function [-Werror=maybe-uninitialized] |
| return ret; |
| ^~~ |
| ... |
| |
| Signed-off-by: Changbin Du <changbin.du@gmail.com> |
| Reviewed-by: Jiri Olsa <jolsa@kernel.org> |
| Cc: Alexei Starovoitov <ast@kernel.org> |
| Cc: Daniel Borkmann <daniel@iogearbox.net> |
| Cc: Namhyung Kim <namhyung@kernel.org> |
| Cc: Peter Zijlstra <peterz@infradead.org> |
| Cc: Steven Rostedt (VMware) <rostedt@goodmis.org> |
| Link: http://lkml.kernel.org/r/20190316080556.3075-4-changbin.du@gmail.com |
| Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> |
| Signed-off-by: Sasha Levin <sashal@kernel.org> |
| --- |
| tools/lib/bpf/libbpf.c | 2 +- |
| tools/perf/bench/epoll-ctl.c | 2 +- |
| tools/perf/bench/epoll-wait.c | 2 +- |
| tools/perf/tests/backward-ring-buffer.c | 2 +- |
| 4 files changed, 4 insertions(+), 4 deletions(-) |
| |
| diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c |
| index 169e347c76f6..9ba1a2e1ed7a 100644 |
| --- a/tools/lib/bpf/libbpf.c |
| +++ b/tools/lib/bpf/libbpf.c |
| @@ -627,7 +627,7 @@ bpf_object__init_maps(struct bpf_object *obj, int flags) |
| bool strict = !(flags & MAPS_RELAX_COMPAT); |
| int i, map_idx, map_def_sz, nr_maps = 0; |
| Elf_Scn *scn; |
| - Elf_Data *data; |
| + Elf_Data *data = NULL; |
| Elf_Data *symbols = obj->efile.symbols; |
| |
| if (obj->efile.maps_shndx < 0) |
| diff --git a/tools/perf/bench/epoll-ctl.c b/tools/perf/bench/epoll-ctl.c |
| index 0c0a6e824934..2af067859966 100644 |
| --- a/tools/perf/bench/epoll-ctl.c |
| +++ b/tools/perf/bench/epoll-ctl.c |
| @@ -224,7 +224,7 @@ static int do_threads(struct worker *worker, struct cpu_map *cpu) |
| pthread_attr_t thread_attr, *attrp = NULL; |
| cpu_set_t cpuset; |
| unsigned int i, j; |
| - int ret; |
| + int ret = 0; |
| |
| if (!noaffinity) |
| pthread_attr_init(&thread_attr); |
| diff --git a/tools/perf/bench/epoll-wait.c b/tools/perf/bench/epoll-wait.c |
| index 5a11534e96a0..fe85448abd45 100644 |
| --- a/tools/perf/bench/epoll-wait.c |
| +++ b/tools/perf/bench/epoll-wait.c |
| @@ -293,7 +293,7 @@ static int do_threads(struct worker *worker, struct cpu_map *cpu) |
| pthread_attr_t thread_attr, *attrp = NULL; |
| cpu_set_t cpuset; |
| unsigned int i, j; |
| - int ret, events = EPOLLIN; |
| + int ret = 0, events = EPOLLIN; |
| |
| if (oneshot) |
| events |= EPOLLONESHOT; |
| diff --git a/tools/perf/tests/backward-ring-buffer.c b/tools/perf/tests/backward-ring-buffer.c |
| index 6d598cc071ae..1a9c3becf5ff 100644 |
| --- a/tools/perf/tests/backward-ring-buffer.c |
| +++ b/tools/perf/tests/backward-ring-buffer.c |
| @@ -18,7 +18,7 @@ static void testcase(void) |
| int i; |
| |
| for (i = 0; i < NR_ITERS; i++) { |
| - char proc_name[10]; |
| + char proc_name[15]; |
| |
| snprintf(proc_name, sizeof(proc_name), "p:%d\n", i); |
| prctl(PR_SET_NAME, proc_name); |
| -- |
| 2.19.1 |
| |