From: Daniel Xu Date: Tue, 14 Jan 2025 20:28:42 +0000 (-0700) Subject: bpf: verifier: Add missing newline on verbose() call X-Git-Tag: v6.14-rc1~133^2~4^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b8a81b5dd6450be730924ea5e78f5892927cccd1;p=linux-block.git bpf: verifier: Add missing newline on verbose() call The print was missing a newline. Signed-off-by: Daniel Xu Link: https://lore.kernel.org/r/59cbe18367b159cd470dc6d5c652524c1dc2b984.1736886479.git.dxu@dxuuu.xyz Signed-off-by: Alexei Starovoitov --- 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; }