2022-06-29 17:37:52

by Jules Irenge

[permalink] [raw]
Subject: [PATCH 1/2] btf: Fix required space error

This patch fixes error reported ny Checkpatch at bpf_log()

ERROR: space required after that , ctx:VxV
Signed-off-by: Jules Irenge <[email protected]>
---
kernel/bpf/btf.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/kernel/bpf/btf.c b/kernel/bpf/btf.c
index 2e2066d6af94..1bc496162572 100644
--- a/kernel/bpf/btf.c
+++ b/kernel/bpf/btf.c
@@ -5454,7 +5454,9 @@ bool btf_ctx_access(int off, int size, enum bpf_access_type type,

if (ctx_arg_info->offset == off) {
if (!ctx_arg_info->btf_id) {
- bpf_log(log,"invalid btf_id for context argument offset %u\n", off);
+ bpf_log(log,
+ "invalid btf_id for context argument offset %u\n",
+ off);
return false;
}

--
2.36.1


2022-06-29 19:26:08

by Alexei Starovoitov

[permalink] [raw]
Subject: Re: [PATCH 1/2] btf: Fix required space error

On Wed, Jun 29, 2022 at 10:14 AM Jules Irenge <[email protected]> wrote:
>
> This patch fixes error reported ny Checkpatch at bpf_log()

Please do not send patches suggested by checkpatch.
checkpatch is not an authoritative tool.
It's merely suggesting things.