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

From: Jules Irenge
Date: Wed Jun 29 2022 - 13:14:43 EST


This patch fixes error reported ny Checkpatch at bpf_log()

ERROR: space required after that , ctx:VxV
Signed-off-by: Jules Irenge <jbi.octave@xxxxxxxxx>
---
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