[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <17ecda4dcfc07c14bad0b2ed867ef8efbee8e1fb.1734667691.git.dxu@dxuuu.xyz>
Date: Thu, 19 Dec 2024 21:09:43 -0700
From: Daniel Xu <dxu@...uu.xyz>
To: andrii@...nel.org,
daniel@...earbox.net,
ast@...nel.org,
eddyz87@...il.com
Cc: john.fastabend@...il.com,
martin.lau@...ux.dev,
song@...nel.org,
yonghong.song@...ux.dev,
kpsingh@...nel.org,
sdf@...ichev.me,
haoluo@...gle.com,
jolsa@...nel.org,
bpf@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH bpf-next v6 1/5] bpf: verifier: Add missing newline on verbose() call
The print was missing a newline.
Signed-off-by: Daniel Xu <dxu@...uu.xyz>
---
kernel/bpf/verifier.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index f27274e933e5..4383653764e8 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -7739,7 +7739,7 @@ static int check_stack_range_initialized(
slot = -i - 1;
spi = slot / BPF_REG_SIZE;
if (state->allocated_stack <= slot) {
- verbose(env, "verifier bug: allocated_stack too small");
+ verbose(env, "verifier bug: allocated_stack too small\n");
return -EFAULT;
}
--
2.47.1
Powered by blists - more mailing lists