diff options
| author | Alexei Starovoitov <[email protected]> | 2025-09-10 19:34:09 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2025-09-10 19:34:09 +0000 |
| commit | 91f34aaae06e425e4644afde92ddff949b6abb54 (patch) | |
| tree | 0bfc9adba37a9dbaabd25dca559e320a729117a6 /tools/testing/selftests/bpf/prog_tests/timer_mim.c | |
| parent | tcp_bpf: Call sk_msg_free() when tcp_bpf_send_verdict() fails to allocate pso... (diff) | |
| parent | selftests/bpf: Skip timer cases when bpf_timer is not supported (diff) | |
| download | kernel-91f34aaae06e425e4644afde92ddff949b6abb54.tar.gz kernel-91f34aaae06e425e4644afde92ddff949b6abb54.zip | |
Merge branch 'bpf-reject-bpf_timer-for-preempt_rt'
Leon Hwang says:
====================
bpf: Reject bpf_timer for PREEMPT_RT
While running './test_progs -t timer' to validate the test case from
"selftests/bpf: Introduce experimental bpf_in_interrupt()"[0] for
PREEMPT_RT, I encountered a kernel warning:
BUG: sleeping function called from invalid context at kernel/locking/spinlock_rt.c:48
To address this, reject bpf_timer usage in the verifier when
PREEMPT_RT is enabled, and skip the corresponding timer selftests.
Changes:
v2 -> v3:
* Drop skipping test case 'timer_interrupt'.
* Address comments from Alexei:
* Respin targeting bpf tree.
* Trim commit log.
v1 -> v2:
* Skip test case 'timer_interrupt'.
Links:
[0] https://lore.kernel.org/bpf/[email protected]/
====================
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/timer_mim.c')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/timer_mim.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/timer_mim.c b/tools/testing/selftests/bpf/prog_tests/timer_mim.c index 9ff7843909e7..c930c7d7105b 100644 --- a/tools/testing/selftests/bpf/prog_tests/timer_mim.c +++ b/tools/testing/selftests/bpf/prog_tests/timer_mim.c @@ -65,6 +65,10 @@ void serial_test_timer_mim(void) goto cleanup; timer_skel = timer_mim__open_and_load(); + if (!timer_skel && errno == EOPNOTSUPP) { + test__skip(); + return; + } if (!ASSERT_OK_PTR(timer_skel, "timer_skel_load")) goto cleanup; |
