Message ID | 20250407215656.2535990-1-victor@mojatatu.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5ac40e6b5b0bac3f72020a48d01ada23e8450d0c |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] selftests: tc-testing: Pre-load IFE action and its submodules | expand |
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Mon, 7 Apr 2025 18:56:56 -0300 you wrote: > Recently we had some issues in parallel TDC where some of IFE tests are > failing due to some of IFE's submodules (like act_meta_skbtcindex and > act_meta_skbprio) taking too long to load [1]. To avoid that issue, > pre-load IFE and all its submodules before running any of the tests in > tdc.sh > > [1] https://lore.kernel.org/netdev/e909b2a0-244e-4141-9fa9-1b7d96ab7d71@mojatatu.com/T/#u > > [...] Here is the summary with links: - [net-next] selftests: tc-testing: Pre-load IFE action and its submodules https://git.kernel.org/netdev/net-next/c/5ac40e6b5b0b You are awesome, thank you!
diff --git a/tools/testing/selftests/tc-testing/tdc.sh b/tools/testing/selftests/tc-testing/tdc.sh index cddff1772e10..589b18ed758a 100755 --- a/tools/testing/selftests/tc-testing/tdc.sh +++ b/tools/testing/selftests/tc-testing/tdc.sh @@ -31,6 +31,10 @@ try_modprobe act_skbedit try_modprobe act_skbmod try_modprobe act_tunnel_key try_modprobe act_vlan +try_modprobe act_ife +try_modprobe act_meta_mark +try_modprobe act_meta_skbtcindex +try_modprobe act_meta_skbprio try_modprobe cls_basic try_modprobe cls_bpf try_modprobe cls_cgroup
Recently we had some issues in parallel TDC where some of IFE tests are failing due to some of IFE's submodules (like act_meta_skbtcindex and act_meta_skbprio) taking too long to load [1]. To avoid that issue, pre-load IFE and all its submodules before running any of the tests in tdc.sh [1] https://lore.kernel.org/netdev/e909b2a0-244e-4141-9fa9-1b7d96ab7d71@mojatatu.com/T/#u Signed-off-by: Victor Nogueira <victor@mojatatu.com> --- tools/testing/selftests/tc-testing/tdc.sh | 4 ++++ 1 file changed, 4 insertions(+)