Skip to content

Commit b8a81b5

Browse files
danobiAlexei Starovoitov
authored and
Alexei Starovoitov
committed
bpf: verifier: Add missing newline on verbose() call
The print was missing a newline. Signed-off-by: Daniel Xu <[email protected]> Link: https://lore.kernel.org/r/59cbe18367b159cd470dc6d5c652524c1dc2b984.1736886479.git.dxu@dxuuu.xyz Signed-off-by: Alexei Starovoitov <[email protected]>
1 parent 556a399 commit b8a81b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: kernel/bpf/verifier.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -7739,7 +7739,7 @@ static int check_stack_range_initialized(
77397739
slot = -i - 1;
77407740
spi = slot / BPF_REG_SIZE;
77417741
if (state->allocated_stack <= slot) {
7742-
verbose(env, "verifier bug: allocated_stack too small");
7742+
verbose(env, "verifier bug: allocated_stack too small\n");
77437743
return -EFAULT;
77447744
}
77457745

0 commit comments

Comments
 (0)