[PATCH bpf-next v7 1/5] bpf: verifier: Add missing newline on verbose() call

Daniel Xu posted 5 patches 11 months ago
[PATCH bpf-next v7 1/5] bpf: verifier: Add missing newline on verbose() call
Posted by Daniel Xu 11 months ago
The print was missing a newline.

Signed-off-by: Daniel Xu <dxu@dxuuu.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 b8ca227c78af..8879977eb9eb 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