diff options
author | Tony Ambardar <tony.ambardar@gmail.com> | 2024-09-16 01:37:40 -0700 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-10-03 17:47:36 -0700 |
commit | e8957c0dde3c945db2403beb3131a5ad84860b5f (patch) | |
tree | 156907cc2a9685462808a6324b6de385e18276d2 /tools/lib/bpf/relo_core.c | |
parent | c27d8235ba97139d7a085367ff57773902eb3fc5 (diff) | |
download | linux-e8957c0dde3c945db2403beb3131a5ad84860b5f.tar.gz linux-e8957c0dde3c945db2403beb3131a5ad84860b5f.tar.bz2 linux-e8957c0dde3c945db2403beb3131a5ad84860b5f.zip |
libbpf: Improve log message formatting
Fix missing newlines and extraneous terminal spaces in messages.
Signed-off-by: Tony Ambardar <tony.ambardar@gmail.com>
Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/086884b7cbf87e524d584f9bf87f7a580e378b2b.1726475448.git.tony.ambardar@gmail.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/lib/bpf/relo_core.c')
-rw-r--r-- | tools/lib/bpf/relo_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/bpf/relo_core.c b/tools/lib/bpf/relo_core.c index 63a4d5ad12d1..7632e9d41827 100644 --- a/tools/lib/bpf/relo_core.c +++ b/tools/lib/bpf/relo_core.c @@ -1339,7 +1339,7 @@ int bpf_core_calc_relo_insn(const char *prog_name, cands->cands[i].id, cand_spec); if (err < 0) { bpf_core_format_spec(spec_buf, sizeof(spec_buf), cand_spec); - pr_warn("prog '%s': relo #%d: error matching candidate #%d %s: %d\n ", + pr_warn("prog '%s': relo #%d: error matching candidate #%d %s: %d\n", prog_name, relo_idx, i, spec_buf, err); return err; } |