summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPuranjay Mohan <puranjay@kernel.org>2025-12-30 22:51:32 +0300
committerAlexei Starovoitov <ast@kernel.org>2025-12-30 23:35:23 +0300
commit317a5df78f24bd77fb770a26eb85bf39620592e0 (patch)
tree3d9611892dccefb26df37545a00e6e0d59b1db05
parent600605853f87a4b1c3530a63f78a3541633402b0 (diff)
downloadlinux-317a5df78f24bd77fb770a26eb85bf39620592e0.tar.xz
selftests/bpf: Fix verifier_arena_large/big_alloc3 test
The big_alloc3() test tries to allocate 2051 pages at once in non-sleepable context and this can fail sporadically on resource contrained systems, so skip this test in case of such failures. Signed-off-by: Puranjay Mohan <puranjay@kernel.org> Link: https://lore.kernel.org/r/20251230195134.599463-1-puranjay@kernel.org Signed-off-by: Alexei Starovoitov <ast@kernel.org>
-rw-r--r--tools/testing/selftests/bpf/progs/verifier_arena_large.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/progs/verifier_arena_large.c b/tools/testing/selftests/bpf/progs/verifier_arena_large.c
index 4ca491cbe8d1..5f7e7afee169 100644
--- a/tools/testing/selftests/bpf/progs/verifier_arena_large.c
+++ b/tools/testing/selftests/bpf/progs/verifier_arena_large.c
@@ -300,7 +300,7 @@ int big_alloc3(void *ctx)
*/
pages = bpf_arena_alloc_pages(&arena, NULL, 2051, NUMA_NO_NODE, 0);
if (!pages)
- return -1;
+ return 0;
bpf_for(i, 0, 2051)
pages[i * PAGE_SIZE] = 123;