OSDN Git Service

tools/resolve_btfids: Fix some error messages
authorBrendan Jackman <jackmanb@google.com>
Thu, 3 Dec 2020 10:22:34 +0000 (10:22 +0000)
committerAlexei Starovoitov <ast@kernel.org>
Thu, 3 Dec 2020 18:25:47 +0000 (10:25 -0800)
Add missing newlines and fix polarity of strerror argument.

Signed-off-by: Brendan Jackman <jackmanb@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Jiri Olsa <jolsa@redhat.com>
Link: https://lore.kernel.org/bpf/20201203102234.648540-1-jackmanb@google.com
tools/bpf/resolve_btfids/main.c

index dfa540d..e3ea569 100644 (file)
@@ -454,7 +454,7 @@ static int symbols_collect(struct object *obj)
                        return -ENOMEM;
 
                if (id->addr_cnt >= ADDR_CNT) {
-                       pr_err("FAILED symbol %s crossed the number of allowed lists",
+                       pr_err("FAILED symbol %s crossed the number of allowed lists\n",
                                id->name);
                        return -1;
                }
@@ -477,8 +477,8 @@ static int symbols_resolve(struct object *obj)
        btf = btf__parse(obj->btf ?: obj->path, NULL);
        err = libbpf_get_error(btf);
        if (err) {
-               pr_err("FAILED: load BTF from %s: %s",
-                       obj->path, strerror(err));
+               pr_err("FAILED: load BTF from %s: %s\n",
+                       obj->path, strerror(-err));
                return -1;
        }