* [PATCH net] selftests/drivers/net: include lib/sh/*.sh
@ 2026-09-07 7:28 Hangbin Liu
2026-09-07 8:55 ` Petr Machata
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Hangbin Liu @ 2026-09-07 7:28 UTC (permalink / raw)
To: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Shuah Khan, Jay Vosburgh, Vladimir Oltean,
Breno Leitao, Jiri Pirko, Michael S. Tsirkin, Jason Wang,
Xuan Zhuo, Eugenio Pérez, Petr Machata
Cc: Matthieu Baerts, Hangbin Liu, netdev, linux-kselftest,
linux-kernel, virtualization, Hangbin Liu
From: Hangbin Liu <liuhangbin@kylinos.cn>
When I tried to install and run bonding selftests via:
make INSTALL_PATH=/tmp/kself TARGETS=drivers/net/bonding \
-C tools/testing/selftests install
Some tests fail because net/lib/sh/defer.sh is missing:
/tmp/kself/net/forwarding/../lib.sh: line 5: /tmp/kself/net/lib/sh/defer.sh: No such file or directory
One option is to add defer.sh directly to TEST_INCLUDES. Alternatively,
follow the approach from commit f72aa1b27628 ("selftests: net: include
lib/sh/*.sh with lib.sh"), which pulls in all .sh files to accommodate
future changes to the library directory.
This patch adds a wildcard to include all shell files for drivers/net
tests that consume net lib.sh. TEST_INCLUDES is also sorted to avoid
ordering‑related problems for future modifications. The team driver is
not affected by this bug, but we use the wildcard for it as well, rather
than listing only defer.sh.
Fixes: a6e263f125cd ("selftests: net: lib: Introduce deferred commands")
Signed-off-by: Hangbin Liu <liuhangbin@kylinos.cn>
---
Since this is a trivial fix, I have also updated the virtio_net part
within this patch. Please let me know if I should split the virtio_net
changes into a separate patch.
Before posting the patch, I ran `make install` for each subtest and
verified that `defer.sh` gets installed.
---
tools/testing/selftests/drivers/net/Makefile | 1 +
tools/testing/selftests/drivers/net/bonding/Makefile | 3 ++-
tools/testing/selftests/drivers/net/dsa/Makefile | 1 +
tools/testing/selftests/drivers/net/hw/Makefile | 3 ++-
tools/testing/selftests/drivers/net/netconsole/Makefile | 3 ++-
tools/testing/selftests/drivers/net/team/Makefile | 4 ++--
tools/testing/selftests/drivers/net/virtio_net/Makefile | 1 +
7 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/tools/testing/selftests/drivers/net/Makefile b/tools/testing/selftests/drivers/net/Makefile
index d5bf4cb638a8..ab39c2e508f0 100644
--- a/tools/testing/selftests/drivers/net/Makefile
+++ b/tools/testing/selftests/drivers/net/Makefile
@@ -3,6 +3,7 @@ CFLAGS += $(KHDR_INCLUDES)
TEST_INCLUDES := $(wildcard lib/py/*.py) \
$(wildcard lib/sh/*.sh) \
+ $(wildcard ../../net/lib/sh/*.sh) \
../../net/lib.sh \
TEST_GEN_FILES := \
diff --git a/tools/testing/selftests/drivers/net/bonding/Makefile b/tools/testing/selftests/drivers/net/bonding/Makefile
index 6364ca02642d..e337c099fb40 100644
--- a/tools/testing/selftests/drivers/net/bonding/Makefile
+++ b/tools/testing/selftests/drivers/net/bonding/Makefile
@@ -27,9 +27,10 @@ TEST_FILES := \
# end of TEST_FILES
TEST_INCLUDES := \
- ../../../net/lib.sh \
+ $(wildcard ../../../net/lib/sh/*.sh) \
../lib/sh/lib_netcons.sh \
../../../net/forwarding/lib.sh \
+ ../../../net/lib.sh \
# end of TEST_INCLUDES
include ../../../lib.mk
diff --git a/tools/testing/selftests/drivers/net/dsa/Makefile b/tools/testing/selftests/drivers/net/dsa/Makefile
index 7994bd0e5c44..7893011b3842 100644
--- a/tools/testing/selftests/drivers/net/dsa/Makefile
+++ b/tools/testing/selftests/drivers/net/dsa/Makefile
@@ -19,6 +19,7 @@ TEST_FILES := \
# end of TEST_FILES
TEST_INCLUDES := \
+ $(wildcard ../../../net/lib/sh/*.sh) \
../../../net/forwarding/bridge_locked_port.sh \
../../../net/forwarding/bridge_mdb.sh \
../../../net/forwarding/bridge_mld.sh \
diff --git a/tools/testing/selftests/drivers/net/hw/Makefile b/tools/testing/selftests/drivers/net/hw/Makefile
index 78bb0169350b..17c7e878ca42 100644
--- a/tools/testing/selftests/drivers/net/hw/Makefile
+++ b/tools/testing/selftests/drivers/net/hw/Makefile
@@ -64,10 +64,11 @@ TEST_FILES := \
TEST_INCLUDES := \
$(wildcard lib/py/*.py ../lib/py/*.py) \
- ../../../net/lib.sh \
+ $(wildcard ../../../net/lib/sh/*.sh) \
../../../net/forwarding/ipip_lib.sh \
../../../net/forwarding/lib.sh \
../../../net/forwarding/tc_common.sh \
+ ../../../net/lib.sh \
#
# YNL files, must be before "include ..lib.mk"
diff --git a/tools/testing/selftests/drivers/net/netconsole/Makefile b/tools/testing/selftests/drivers/net/netconsole/Makefile
index f0674c0017fc..c7972a40babf 100644
--- a/tools/testing/selftests/drivers/net/netconsole/Makefile
+++ b/tools/testing/selftests/drivers/net/netconsole/Makefile
@@ -1,8 +1,9 @@
# SPDX-License-Identifier: GPL-2.0
TEST_INCLUDES := \
- ../../../net/lib.sh \
+ $(wildcard ../../../net/lib/sh/*.sh) \
../lib/sh/lib_netcons.sh \
+ ../../../net/lib.sh \
# end of TEST_INCLUDES
TEST_PROGS := \
diff --git a/tools/testing/selftests/drivers/net/team/Makefile b/tools/testing/selftests/drivers/net/team/Makefile
index 7c58cf82121e..e40c83a92724 100644
--- a/tools/testing/selftests/drivers/net/team/Makefile
+++ b/tools/testing/selftests/drivers/net/team/Makefile
@@ -13,12 +13,12 @@ TEST_PROGS := \
# end of TEST_PROGS
TEST_INCLUDES := \
- team_lib.sh \
+ $(wildcard ../../../net/lib/sh/*.sh) \
../bonding/lag_lib.sh \
../../../net/forwarding/lib.sh \
../../../net/in_netns.sh \
../../../net/lib.sh \
- ../../../net/lib/sh/defer.sh \
+ team_lib.sh \
# end of TEST_INCLUDES
include ../../../lib.mk
diff --git a/tools/testing/selftests/drivers/net/virtio_net/Makefile b/tools/testing/selftests/drivers/net/virtio_net/Makefile
index 868ece3fea1f..df34e29b5680 100644
--- a/tools/testing/selftests/drivers/net/virtio_net/Makefile
+++ b/tools/testing/selftests/drivers/net/virtio_net/Makefile
@@ -5,6 +5,7 @@ TEST_PROGS = basic_features.sh
TEST_FILES = virtio_net_common.sh
TEST_INCLUDES = \
+ $(wildcard ../../../net/lib/sh/*.sh) \
../../../net/forwarding/lib.sh \
../../../net/lib.sh \
# end of TEST_INCLUDES
---
base-commit: 38b6be101006d3e7af972999f45d4f1e8250587a
change-id: 20260904-selftest_lib_defer-0174ce436d8a
Best regards,
--
Hangbin Liu <liuhangbin@kylinos.cn>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] selftests/drivers/net: include lib/sh/*.sh
2026-09-07 7:28 [PATCH net] selftests/drivers/net: include lib/sh/*.sh Hangbin Liu
@ 2026-09-07 8:55 ` Petr Machata
2026-09-07 12:05 ` Breno Leitao
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Petr Machata @ 2026-09-07 8:55 UTC (permalink / raw)
To: Hangbin Liu
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Shuah Khan, Jay Vosburgh, Vladimir Oltean,
Breno Leitao, Jiri Pirko, Michael S. Tsirkin, Jason Wang,
Xuan Zhuo, Eugenio Pérez, Petr Machata, Matthieu Baerts,
netdev, linux-kselftest, linux-kernel, virtualization,
Hangbin Liu
Hangbin Liu <hangbin.liu@linux.dev> writes:
> From: Hangbin Liu <liuhangbin@kylinos.cn>
>
> When I tried to install and run bonding selftests via:
>
> make INSTALL_PATH=/tmp/kself TARGETS=drivers/net/bonding \
> -C tools/testing/selftests install
>
> Some tests fail because net/lib/sh/defer.sh is missing:
>
> /tmp/kself/net/forwarding/../lib.sh: line 5: /tmp/kself/net/lib/sh/defer.sh: No such file or directory
>
> One option is to add defer.sh directly to TEST_INCLUDES. Alternatively,
> follow the approach from commit f72aa1b27628 ("selftests: net: include
> lib/sh/*.sh with lib.sh"), which pulls in all .sh files to accommodate
> future changes to the library directory.
>
> This patch adds a wildcard to include all shell files for drivers/net
> tests that consume net lib.sh. TEST_INCLUDES is also sorted to avoid
> ordering‑related problems for future modifications. The team driver is
> not affected by this bug, but we use the wildcard for it as well, rather
> than listing only defer.sh.
>
> Fixes: a6e263f125cd ("selftests: net: lib: Introduce deferred commands")
> Signed-off-by: Hangbin Liu <liuhangbin@kylinos.cn>
Reviewed-by: Petr Machata <petrm@nvidia.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] selftests/drivers/net: include lib/sh/*.sh
2026-09-07 7:28 [PATCH net] selftests/drivers/net: include lib/sh/*.sh Hangbin Liu
2026-09-07 8:55 ` Petr Machata
@ 2026-09-07 12:05 ` Breno Leitao
2026-09-07 15:14 ` Matthieu Baerts
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Breno Leitao @ 2026-09-07 12:05 UTC (permalink / raw)
To: Hangbin Liu
Cc: Andrew Lunn, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Shuah Khan, Jay Vosburgh, Vladimir Oltean,
Jiri Pirko, Michael S. Tsirkin, Jason Wang, Xuan Zhuo,
Eugenio Pérez, Petr Machata, Matthieu Baerts, netdev,
linux-kselftest, linux-kernel, virtualization, Hangbin Liu
On Mon, Sep 07, 2026 at 03:28:09PM +0800, Hangbin Liu wrote:
> From: Hangbin Liu <liuhangbin@kylinos.cn>
>
> When I tried to install and run bonding selftests via:
>
> make INSTALL_PATH=/tmp/kself TARGETS=drivers/net/bonding \
> -C tools/testing/selftests install
>
> Some tests fail because net/lib/sh/defer.sh is missing:
>
> /tmp/kself/net/forwarding/../lib.sh: line 5: /tmp/kself/net/lib/sh/defer.sh: No such file or directory
>
> One option is to add defer.sh directly to TEST_INCLUDES. Alternatively,
> follow the approach from commit f72aa1b27628 ("selftests: net: include
> lib/sh/*.sh with lib.sh"), which pulls in all .sh files to accommodate
> future changes to the library directory.
>
> This patch adds a wildcard to include all shell files for drivers/net
> tests that consume net lib.sh. TEST_INCLUDES is also sorted to avoid
> ordering‑related problems for future modifications. The team driver is
> not affected by this bug, but we use the wildcard for it as well, rather
> than listing only defer.sh.
>
> Fixes: a6e263f125cd ("selftests: net: lib: Introduce deferred commands")
> Signed-off-by: Hangbin Liu <liuhangbin@kylinos.cn>
Reviewed-by: Breno Leitao <leitao@debian.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] selftests/drivers/net: include lib/sh/*.sh
2026-09-07 7:28 [PATCH net] selftests/drivers/net: include lib/sh/*.sh Hangbin Liu
2026-09-07 8:55 ` Petr Machata
2026-09-07 12:05 ` Breno Leitao
@ 2026-09-07 15:14 ` Matthieu Baerts
2026-09-08 7:29 ` netdev-bot+sashiko
2026-09-09 0:40 ` patchwork-bot+netdevbpf
4 siblings, 0 replies; 7+ messages in thread
From: Matthieu Baerts @ 2026-09-07 15:14 UTC (permalink / raw)
To: Hangbin Liu
Cc: netdev, linux-kselftest, linux-kernel, virtualization,
Hangbin Liu, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Shuah Khan, Jay Vosburgh,
Vladimir Oltean, Breno Leitao, Jiri Pirko, Michael S. Tsirkin,
Jason Wang, Xuan Zhuo, Eugenio Pérez, Petr Machata
Hi Hangbin,
On 07/09/2026 09:28, Hangbin Liu wrote:
> From: Hangbin Liu <liuhangbin@kylinos.cn>
>
> When I tried to install and run bonding selftests via:
>
> make INSTALL_PATH=/tmp/kself TARGETS=drivers/net/bonding \
> -C tools/testing/selftests install
>
> Some tests fail because net/lib/sh/defer.sh is missing:
>
> /tmp/kself/net/forwarding/../lib.sh: line 5: /tmp/kself/net/lib/sh/defer.sh: No such file or directory
>
> One option is to add defer.sh directly to TEST_INCLUDES. Alternatively,
> follow the approach from commit f72aa1b27628 ("selftests: net: include
> lib/sh/*.sh with lib.sh"), which pulls in all .sh files to accommodate
> future changes to the library directory.
>
> This patch adds a wildcard to include all shell files for drivers/net
> tests that consume net lib.sh. TEST_INCLUDES is also sorted to avoid
> ordering‑related problems for future modifications. The team driver is
> not affected by this bug, but we use the wildcard for it as well, rather
> than listing only defer.sh.
Thank you for fixing that!
Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Cheers,
Matt
--
Sponsored by the NGI0 Core fund.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] selftests/drivers/net: include lib/sh/*.sh
2026-09-07 7:28 [PATCH net] selftests/drivers/net: include lib/sh/*.sh Hangbin Liu
` (2 preceding siblings ...)
2026-09-07 15:14 ` Matthieu Baerts
@ 2026-09-08 7:29 ` netdev-bot+sashiko
2026-09-08 8:26 ` Hangbin Liu
2026-09-09 0:40 ` patchwork-bot+netdevbpf
4 siblings, 1 reply; 7+ messages in thread
From: netdev-bot+sashiko @ 2026-09-08 7:29 UTC (permalink / raw)
To: hangbin.liu
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, shuah, jv, olteanv,
leitao, jiri, mst, jasowangio, xuanzhuo, eperezma, petrm,
matttbe, netdev, linux-kselftest, linux-kernel, virtualization,
liuhangbin
Thank you for your contribution! Sashiko AI review found 1 potential
issue(s) to consider:
Critical: 0 · High: 0 · Medium: 1 · Low: 0
- [Medium] Incomplete fix:
`tools/testing/selftests/drivers/net/netdevsim/Makefile` is the only…
--
selftests/drivers/net: include lib/sh/*.sh
This adds $(wildcard ../../net/lib/sh/*.sh) to TEST_INCLUDES in the
drivers/net selftest Makefiles so that net/lib/sh/defer.sh gets installed
by "make install", and sorts the TEST_INCLUDES lists while at it.
> diff --git a/tools/testing/selftests/drivers/net/Makefile b/tools/testing/selftests/drivers/net/Makefile
> index d5bf4cb638a8c..ab39c2e508f0a 100644
> --- a/tools/testing/selftests/drivers/net/Makefile
> +++ b/tools/testing/selftests/drivers/net/Makefile
> @@ -3,6 +3,7 @@ CFLAGS += $(KHDR_INCLUDES)
>
> TEST_INCLUDES := $(wildcard lib/py/*.py) \
> $(wildcard lib/sh/*.sh) \
> + $(wildcard ../../net/lib/sh/*.sh) \
> ../../net/lib.sh \
>
> TEST_GEN_FILES := \
[Severity: Medium]
Was drivers/net/netdevsim intentionally left out? It is the only Makefile
under tools/testing/selftests/drivers/net/ that this patch does not touch,
and it defines no TEST_INCLUDES at all:
tools/testing/selftests/drivers/net/netdevsim/Makefile:
TEST_PROGS := \
devlink.sh \
...
peer.sh \
...
# end of TEST_PROGS
TEST_FILES := \
ethtool-common.sh
# end of TEST_FILES
include ../../../lib.mk
Its installed scripts do consume the net shell libraries. peer.sh does:
lib_dir=$(dirname $0)/../../../net
source $lib_dir/lib.sh
and devlink.sh, devlink_in_netns.sh, devlink_trap.sh, fib.sh,
fib_notifications.sh, hw_stats_l3.sh, nexthop.sh and psample.sh do:
lib_dir=$(dirname $0)/../../../net/forwarding
source $lib_dir/lib.sh
which reaches net/lib.sh, and that unconditionally sources defer.sh:
tools/testing/selftests/net/lib.sh:
net_dir=$(dirname "$(readlink -e "${BASH_SOURCE[0]}")")
source "$net_dir/lib/sh/defer.sh"
There is also no automatic fallback for this target, since the top-level
Makefile only matches the exact strings net, drivers/net and
drivers/net/hw:
tools/testing/selftests/Makefile:
# Networking tests want the net/lib target, include it automatically
ifneq ($(filter net drivers/net drivers/net/hw,$(TARGETS)),)
ifeq ($(filter net/lib,$(TARGETS)),)
INSTALL_DEP_TARGETS := net/lib
endif
endif
So does the failure quoted in the changelog still reproduce with:
make INSTALL_PATH=/tmp/kself TARGETS=drivers/net/netdevsim \
-C tools/testing/selftests install
The commit message says the patch "adds a wildcard to include all shell
files for drivers/net tests that consume net lib.sh" — should that claim be
narrowed, or netdevsim covered too?
Note the gap in netdevsim is wider than defer.sh: adding only
$(wildcard ../../../net/lib/sh/*.sh) would not be enough, since
../../../net/lib.sh and ../../../net/forwarding/lib.sh are not installed
either (plus devlink_lib.sh, fib_offload_lib.sh and tc_common.sh, which
several of those scripts source).
For reference, drivers/net/dsa is also not in the default TARGETS list and
this patch does cover it, and drivers/net/{mlxsw,ocelot,microchip} have no
Makefile so they are not installable targets at all.
--
Sashiko AI review · https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260907-selftest_lib_defer-v1-1-8af94645aaa3%40kylinos.cn
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] selftests/drivers/net: include lib/sh/*.sh
2026-09-08 7:29 ` netdev-bot+sashiko
@ 2026-09-08 8:26 ` Hangbin Liu
0 siblings, 0 replies; 7+ messages in thread
From: Hangbin Liu @ 2026-09-08 8:26 UTC (permalink / raw)
To: netdev
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, shuah, jv, olteanv,
leitao, jiri, mst, jasowangio, xuanzhuo, eperezma, petrm,
matttbe, linux-kselftest, linux-kernel, virtualization
On Tue, Sep 08, 2026 at 07:29:16AM +0000, netdev-bot+sashiko@kernel.org wrote:
> Thank you for your contribution! Sashiko AI review found 1 potential
> issue(s) to consider:
>
> Critical: 0 · High: 0 · Medium: 1 · Low: 0
>
> - [Medium] Incomplete fix:
> `tools/testing/selftests/drivers/net/netdevsim/Makefile` is the only…
>
> --
>
> selftests/drivers/net: include lib/sh/*.sh
>
> This adds $(wildcard ../../net/lib/sh/*.sh) to TEST_INCLUDES in the
> drivers/net selftest Makefiles so that net/lib/sh/defer.sh gets installed
> by "make install", and sorts the TEST_INCLUDES lists while at it.
>
> > diff --git a/tools/testing/selftests/drivers/net/Makefile b/tools/testing/selftests/drivers/net/Makefile
> > index d5bf4cb638a8c..ab39c2e508f0a 100644
> > --- a/tools/testing/selftests/drivers/net/Makefile
> > +++ b/tools/testing/selftests/drivers/net/Makefile
> > @@ -3,6 +3,7 @@ CFLAGS += $(KHDR_INCLUDES)
> >
> > TEST_INCLUDES := $(wildcard lib/py/*.py) \
> > $(wildcard lib/sh/*.sh) \
> > + $(wildcard ../../net/lib/sh/*.sh) \
> > ../../net/lib.sh \
> >
> > TEST_GEN_FILES := \
>
> [Severity: Medium]
> Was drivers/net/netdevsim intentionally left out? It is the only Makefile
> under tools/testing/selftests/drivers/net/ that this patch does not touch,
> and it defines no TEST_INCLUDES at all:
>
> tools/testing/selftests/drivers/net/netdevsim/Makefile:
> TEST_PROGS := \
> devlink.sh \
> ...
> peer.sh \
> ...
> # end of TEST_PROGS
>
> TEST_FILES := \
> ethtool-common.sh
> # end of TEST_FILES
>
> include ../../../lib.mk
Yes, netdevsim doesn't have TEST_INCLUDES at all. I think it deserves
its own separate patch.
Thanks
Hangbin
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH net] selftests/drivers/net: include lib/sh/*.sh
2026-09-07 7:28 [PATCH net] selftests/drivers/net: include lib/sh/*.sh Hangbin Liu
` (3 preceding siblings ...)
2026-09-08 7:29 ` netdev-bot+sashiko
@ 2026-09-09 0:40 ` patchwork-bot+netdevbpf
4 siblings, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-09-09 0:40 UTC (permalink / raw)
To: Hangbin Liu
Cc: andrew+netdev, davem, edumazet, kuba, pabeni, shuah, jv, olteanv,
leitao, jiri, mst, jasowangio, xuanzhuo, eperezma, petrm,
matttbe, netdev, linux-kselftest, linux-kernel, virtualization,
liuhangbin
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Mon, 07 Sep 2026 15:28:09 +0800 you wrote:
> From: Hangbin Liu <liuhangbin@kylinos.cn>
>
> When I tried to install and run bonding selftests via:
>
> make INSTALL_PATH=/tmp/kself TARGETS=drivers/net/bonding \
> -C tools/testing/selftests install
>
> [...]
Here is the summary with links:
- [net] selftests/drivers/net: include lib/sh/*.sh
https://git.kernel.org/netdev/net-next/c/52176ca4e4d0
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-09-09 0:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07 7:28 [PATCH net] selftests/drivers/net: include lib/sh/*.sh Hangbin Liu
2026-09-07 8:55 ` Petr Machata
2026-09-07 12:05 ` Breno Leitao
2026-09-07 15:14 ` Matthieu Baerts
2026-09-08 7:29 ` netdev-bot+sashiko
2026-09-08 8:26 ` Hangbin Liu
2026-09-09 0:40 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®