diff options
author | Benjamin Tissoires <[email protected]> | 2024-04-30 12:43:26 +0200 |
---|---|---|
committer | Daniel Borkmann <[email protected]> | 2024-04-30 16:28:58 +0200 |
commit | 05cbc217aafbc631a6c2fab4accf95850cb48358 (patch) | |
tree | 7a6b3c7b3b4ba041afba675efe19bebefaa878ce | |
parent | a891711d0166133ec5120615fcf365d9745d82b2 (diff) |
selftests/bpf: Drop an unused local variable
Some copy/paste leftover, this is never used.
Fixes: e3d9eac99afd ("selftests/bpf: wq: add bpf_wq_init() checks")
Signed-off-by: Benjamin Tissoires <[email protected]>
Signed-off-by: Daniel Borkmann <[email protected]>
Acked-by: Kumar Kartikeya Dwivedi <[email protected]>
Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r-- | tools/testing/selftests/bpf/prog_tests/wq.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/wq.c b/tools/testing/selftests/bpf/prog_tests/wq.c index c4bacd3160e1..99e438fe12ac 100644 --- a/tools/testing/selftests/bpf/prog_tests/wq.c +++ b/tools/testing/selftests/bpf/prog_tests/wq.c @@ -36,7 +36,5 @@ void serial_test_wq(void) void serial_test_failures_wq(void) { - LIBBPF_OPTS(bpf_test_run_opts, topts); - RUN_TESTS(wq_failures); } |