[PATCH v3 bpf-next] tools/resolve_btfids: Fix warnings

Subsystems: bpf [general] (safe dynamic programs and tools), the rest

STALE1955d LANDED

Landed in mainline as e27bfefb21f2 on 2021-03-31.

3 messages, 3 authors, 2021-03-31 · open the first message on its own page

[PATCH v3 bpf-next] tools/resolve_btfids: Fix warnings

From: Stanislav Fomichev <hidden>
Date: 2021-03-29 22:34:47

* make eprintf static, used only in main.c
* initialize ret in eprintf
* remove unused *tmp

v3:
* remove another err (Song Liu)

v2:
* remove unused 'int err = -1'

Cc: Song Liu <song@kernel.org>
Signed-off-by: Stanislav Fomichev <redacted>
---
 tools/bpf/resolve_btfids/main.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/tools/bpf/resolve_btfids/main.c b/tools/bpf/resolve_btfids/main.c
index 80d966cfcaa1..7550fd9c3188 100644
--- a/tools/bpf/resolve_btfids/main.c
+++ b/tools/bpf/resolve_btfids/main.c
@@ -115,10 +115,10 @@ struct object {
 
 static int verbose;
 
-int eprintf(int level, int var, const char *fmt, ...)
+static int eprintf(int level, int var, const char *fmt, ...)
 {
 	va_list args;
-	int ret;
+	int ret = 0;
 
 	if (var >= level) {
 		va_start(args, fmt);
@@ -385,7 +385,7 @@ static int elf_collect(struct object *obj)
 static int symbols_collect(struct object *obj)
 {
 	Elf_Scn *scn = NULL;
-	int n, i, err = 0;
+	int n, i;
 	GElf_Shdr sh;
 	char *name;
 
@@ -402,11 +402,10 @@ static int symbols_collect(struct object *obj)
 	 * Scan symbols and look for the ones starting with
 	 * __BTF_ID__* over .BTF_ids section.
 	 */
-	for (i = 0; !err && i < n; i++) {
-		char *tmp, *prefix;
+	for (i = 0; i < n; i++) {
+		char *prefix;
 		struct btf_id *id;
 		GElf_Sym sym;
-		int err = -1;
 
 		if (!gelf_getsym(obj->efile.symbols, i, &sym))
 			return -1;
-- 
2.31.0.291.g576ba9dcdaf-goog

Re: [PATCH v3 bpf-next] tools/resolve_btfids: Fix warnings

From: Song Liu <song@kernel.org>
Date: 2021-03-29 23:11:19

On Mon, Mar 29, 2021 at 3:35 PM Stanislav Fomichev [off-list ref] wrote:
* make eprintf static, used only in main.c
* initialize ret in eprintf
* remove unused *tmp

v3:
* remove another err (Song Liu)

v2:
* remove unused 'int err = -1'

Cc: Song Liu <song@kernel.org>
Signed-off-by: Stanislav Fomichev <redacted>
Acked-by: Song Liu <redacted>
[...]

Re: [PATCH v3 bpf-next] tools/resolve_btfids: Fix warnings

From: Andrii Nakryiko <hidden>
Date: 2021-03-31 20:29:23

On Mon, Mar 29, 2021 at 3:34 PM Stanislav Fomichev [off-list ref] wrote:
* make eprintf static, used only in main.c
* initialize ret in eprintf
* remove unused *tmp

v3:
* remove another err (Song Liu)

v2:
* remove unused 'int err = -1'

Cc: Song Liu <song@kernel.org>
Signed-off-by: Stanislav Fomichev <redacted>
---
Just in case the bot skips this one. Applied to bpf-next.

[...]
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help