diff options
| author | Kumar Kartikeya Dwivedi <[email protected]> | 2023-07-05 14:47:30 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2023-07-06 02:14:54 +0000 |
| commit | 906bd22a44c7c381ae92996129b075ea7beba8f6 (patch) | |
| tree | 3404326742151691048ad7399fff6bc35dcaa728 /tools/testing/selftests/bpf/prog_tests/async_stack_depth.c | |
| parent | bpf: Fix max stack depth check for async callbacks (diff) | |
| download | kernel-906bd22a44c7c381ae92996129b075ea7beba8f6.tar.gz kernel-906bd22a44c7c381ae92996129b075ea7beba8f6.zip | |
selftests/bpf: Add selftest for check_stack_max_depth bug
Use the bpf_timer_set_callback helper to mark timer_cb as an async
callback, and put a direct call to timer_cb in the main subprog.
As the check_stack_max_depth happens after the do_check pass, the order
does not matter. Without the previous fix, the test passes successfully.
Signed-off-by: Kumar Kartikeya Dwivedi <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests/async_stack_depth.c')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/async_stack_depth.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/async_stack_depth.c b/tools/testing/selftests/bpf/prog_tests/async_stack_depth.c new file mode 100644 index 000000000000..118abc29b236 --- /dev/null +++ b/tools/testing/selftests/bpf/prog_tests/async_stack_depth.c @@ -0,0 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0 +#include <test_progs.h> + +#include "async_stack_depth.skel.h" + +void test_async_stack_depth(void) +{ + RUN_TESTS(async_stack_depth); +} |
