[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250621171944.2619249-1-kuba@kernel.org>
Date: Sat, 21 Jun 2025 10:19:35 -0700
From: Jakub Kicinski <kuba@...nel.org>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org,
edumazet@...gle.com,
pabeni@...hat.com,
andrew+netdev@...n.ch,
horms@...nel.org,
donald.hunter@...il.com,
maxime.chevallier@...tlin.com,
sdf@...ichev.me,
jdamato@...tly.com,
ecree.xilinx@...il.com,
Jakub Kicinski <kuba@...nel.org>
Subject: [PATCH net-next 0/9] net: ethtool: rss: add notifications
Next step on the path to moving RSS config to Netlink. With the
refactoring of the driver-facing API for ETHTOOL_GRXFH/ETHTOOL_SRXFH
out of the way we can move on to more interesting work.
Add Netlink notifications for changes in RSS configuration.
As a reminder (part) of rss-get was introduced in previous releases
when input-xfrm (symmetric hashing) was added. rss-set isn't
implemented, yet, but we can implement rss-ntf and hook it into
the changes done via the IOCTL path (same as other ethtool-nl
notifications do).
Most of the series is concerned with passing arguments to notifications.
So far none of the notifications needed to be parametrized, but RSS can
have multiple contexts per device, and since GET operates on a single
context at a time, the notification needs to also be scoped to a context.
Patch 2-5 add support for passing arguments to notifications thru
ethtool-nl generic infra.
The notification handling itself is pretty trivial, it's mostly
hooking in the right entries into the ethool-nl op tables.
Jakub Kicinski (9):
netlink: specs: add the multicast group name to spec
net: ethtool: dynamically allocate full req size req
net: ethtool: call .parse_request for SET handlers
net: ethtool: remove the data argument from ethtool_notify()
net: ethtool: copy req_info from SET to NTF
net: ethtool: rss: add notifications
doc: ethtool: mark ETHTOOL_GRXFHINDIR as reimplemented
selftests: drv-net: import things in lib one by one
selftests: drv-net: test RSS Netlink notifications
Documentation/netlink/specs/ethtool.yaml | 13 +++
Documentation/networking/ethtool-netlink.rst | 3 +-
include/linux/netdevice.h | 5 +-
include/uapi/linux/ethtool_netlink.h | 2 -
.../uapi/linux/ethtool_netlink_generated.h | 3 +
net/ethtool/common.h | 2 +
net/ethtool/netlink.h | 4 +
net/ethtool/ioctl.c | 28 +++---
net/ethtool/netlink.c | 45 ++++++----
net/ethtool/rss.c | 11 +++
.../drivers/net/hw/lib/py/__init__.py | 17 ++++
.../selftests/drivers/net/hw/rss_api.py | 89 +++++++++++++++++++
.../selftests/drivers/net/lib/py/__init__.py | 14 +++
13 files changed, 203 insertions(+), 33 deletions(-)
create mode 100755 tools/testing/selftests/drivers/net/hw/rss_api.py
--
2.49.0
Powered by blists - more mailing lists