mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
selftests/bpf: adjust verifier_log buffers
The new liveness analysis in liveness.c adds verbose output at BPF_LOG_LEVEL2, making the verifier log for good_prog exceed the 1024-byte reference buffer. When the reference is truncated in fixed mode, the rolling mode captures the actual tail of the full log, which doesn't match the truncated reference. The fix is to increase the buffer sizes in the test. Signed-off-by: Eduard Zingerman <eddyz87@gmail.com> Link: https://lore.kernel.org/r/20260410-patch-set-v4-12-5d4eecb343db@gmail.com Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
parent
b42eb55f6c
commit
957c30c067
|
|
@ -25,10 +25,10 @@ static bool check_prog_load(int prog_fd, bool expect_err, const char *tag)
|
|||
|
||||
static struct {
|
||||
/* strategically placed before others to avoid accidental modification by kernel */
|
||||
char filler[1024];
|
||||
char buf[1024];
|
||||
char filler[16384];
|
||||
char buf[16384];
|
||||
/* strategically placed after buf[] to catch more accidental corruptions */
|
||||
char reference[1024];
|
||||
char reference[16384];
|
||||
} logs;
|
||||
static const struct bpf_insn *insns;
|
||||
static size_t insn_cnt;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user