Re: Exclude cirrus FW tests from KUNIT_ALL_TESTS

2025-04-02 Thread David Gow
On Thu, 3 Apr 2025 at 01:55, 'Mark Brown' via KUnit Development wrote: > > On Wed, Apr 02, 2025 at 10:36:55AM -0700, Jakub Kicinski wrote: > > > The Cirrus tests keep failing for me when run on x86 > > > ./tools/testing/kunit/kunit.py run --alltests --json --arch=x86_64 > > > https://netdev-3.bot

[PATCH net 1/2] net: ethtool: fix ethtool_ringparam_get_cfg() returns a hds_thresh value always as 0.

2025-04-02 Thread Taehee Yoo
When hds-thresh is configured, ethnl_set_rings() is called, and it calls ethtool_ringparam_get_cfg() to get ringparameters from .get_ringparam() callback and dev->cfg. Both hds_config and hds_thresh values should be set from dev->cfg, not from .get_ringparam(). But ethtool_ringparam_get_cfg() sets

[PATCH net 0/2] fix wrong hds-thresh value setting

2025-04-02 Thread Taehee Yoo
A hds-thresh value is not set correctly if input value is 0. The cause is that ethtool_ringparam_get_cfg(), which is a internal function that returns ringparameters from both ->get_ringparam() and dev->cfg can't return a correct hds-thresh value. The first patch fixes ethtool_ringparam_get_cfg() t

Re: [PATCH net v2] selftests: tc-testing: fix nat regex matching

2025-04-02 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Tue, 1 Apr 2025 11:49:08 -0300 you wrote: > In iproute 6.14, the nat ip mask logic was fixed to remove an undefined > behaviour[1]. So now instead of reporting '0.0.0.0/32' on x86 and potentially > '0.0.0.0/0' in other

Re: [PATCH bpf-next v2 2/2] selftests/bpf: add ktls selftest

2025-04-02 Thread John Fastabend
On 2025-02-19 13:20:15, Jiayuan Chen wrote: > add ktls selftest for sockmap > > Test results: > sockmap_ktls/sockmap_ktls disconnect_after_delete IPv4 SOCKMAP:OK > sockmap_ktls/sockmap_ktls update_fails_when_sock_has_ulp IPv4 SOCKMAP:OK > sockmap_ktls/sockmap_ktls disconnect_after_delete IPv4 SOCK

Re: Exclude cirrus FW tests from KUNIT_ALL_TESTS

2025-04-02 Thread Mark Brown
On Wed, Apr 02, 2025 at 10:36:55AM -0700, Jakub Kicinski wrote: > The Cirrus tests keep failing for me when run on x86 > ./tools/testing/kunit/kunit.py run --alltests --json --arch=x86_64 > https://netdev-3.bots.linux.dev/kunit/results/60103/stdout You've not said what tree you're testing ther

Exclude cirrus FW tests from KUNIT_ALL_TESTS

2025-04-02 Thread Jakub Kicinski
Hi! The Cirrus tests keep failing for me when run on x86 ./tools/testing/kunit/kunit.py run --alltests --json --arch=x86_64 https://netdev-3.bots.linux.dev/kunit/results/60103/stdout It seems like new cases continue to appear and we have to keep adding them to the local ignored list. Is it pos