From: patchwork-bot+netdevbpf@kernel.org
To: Jakub Kicinski <kuba@kernel.org>
Cc: davem@davemloft.net, netdev@vger.kernel.org, edumazet@google.com,
pabeni@redhat.com, andrew+netdev@lunn.ch, horms@kernel.org,
donald.hunter@gmail.com, shuah@kernel.org,
kory.maincent@bootlin.com, maxime.chevallier@bootlin.com,
sdf@fomichev.me, ecree.xilinx@gmail.com, gal@nvidia.com,
jdamato@fastly.com, andrew@lunn.ch
Subject: Re: [PATCH net-next v3 00/11] ethtool: rss: support RSS_SET via Netlink
Date: Thu, 17 Jul 2025 23:30:19 +0000 [thread overview]
Message-ID: <175279501975.2106430.2106781743672298732.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250716000331.1378807-1-kuba@kernel.org>
Hello:
This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Tue, 15 Jul 2025 17:03:20 -0700 you wrote:
> Support configuring RSS settings via Netlink.
> Creating and removing contexts remains for the following series.
>
> v3:
> - decode xfrm-input as flags not enum
> - check driver supports get_rxnfc op
> v2: https://lore.kernel.org/20250714222729.743282-1-kuba@kernel.org
> - commit message changes
> - make sure driver implements the set_rxfh op
> - add comment about early return when lacking get
> - set IFF_RXFH_CONFIGURED even if user sets the table to identical
> to default
> - use ethnl_update_binary()
> - make sure we free indir if key parsing fails
> - tests: fix existing rxfh_input_xfrm test for string decode
> - tests: make defer() cleanup more intelligent WRT ordering
> v1: https://lore.kernel.org/20250711015303.3688717-1-kuba@kernel.org
>
> [...]
Here is the summary with links:
- [net-next,v3,01/11] ethtool: rss: initial RSS_SET (indirection table handling)
https://git.kernel.org/netdev/net-next/c/c0ae03588bbb
- [net-next,v3,02/11] selftests: drv-net: rss_api: factor out checking min queue count
https://git.kernel.org/netdev/net-next/c/1560af51e1ea
- [net-next,v3,03/11] tools: ynl: support packing binary arrays of scalars
https://git.kernel.org/netdev/net-next/c/c3e914031039
- [net-next,v3,04/11] selftests: drv-net: rss_api: test setting indirection table via Netlink
https://git.kernel.org/netdev/net-next/c/6e7eb93a692c
- [net-next,v3,05/11] ethtool: rss: support setting hfunc via Netlink
https://git.kernel.org/netdev/net-next/c/82ae67cbc423
- [net-next,v3,06/11] ethtool: rss: support setting hkey via Netlink
https://git.kernel.org/netdev/net-next/c/51798c519a91
- [net-next,v3,07/11] selftests: drv-net: rss_api: test setting hashing key via Netlink
https://git.kernel.org/netdev/net-next/c/169b26207a46
- [net-next,v3,08/11] netlink: specs: define input-xfrm enum in the spec
https://git.kernel.org/netdev/net-next/c/c1b27f0695d6
- [net-next,v3,09/11] ethtool: rss: support setting input-xfrm via Netlink
https://git.kernel.org/netdev/net-next/c/d3e2c7bab124
- [net-next,v3,10/11] ethtool: rss: support setting flow hashing fields
https://git.kernel.org/netdev/net-next/c/2f70251112ec
- [net-next,v3,11/11] selftests: drv-net: rss_api: test input-xfrm and hash fields
https://git.kernel.org/netdev/net-next/c/00e6c61c5a0a
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2025-07-17 23:29 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-16 0:03 [PATCH net-next v3 00/11] ethtool: rss: support RSS_SET via Netlink Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 01/11] ethtool: rss: initial RSS_SET (indirection table handling) Jakub Kicinski
2025-07-16 7:30 ` Gal Pressman
2025-07-16 0:03 ` [PATCH net-next v3 02/11] selftests: drv-net: rss_api: factor out checking min queue count Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 03/11] tools: ynl: support packing binary arrays of scalars Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 04/11] selftests: drv-net: rss_api: test setting indirection table via Netlink Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 05/11] ethtool: rss: support setting hfunc " Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 06/11] ethtool: rss: support setting hkey " Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 07/11] selftests: drv-net: rss_api: test setting hashing key " Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 08/11] netlink: specs: define input-xfrm enum in the spec Jakub Kicinski
2025-07-16 7:43 ` Gal Pressman
2025-07-16 0:03 ` [PATCH net-next v3 09/11] ethtool: rss: support setting input-xfrm via Netlink Jakub Kicinski
2025-07-16 0:03 ` [PATCH net-next v3 10/11] ethtool: rss: support setting flow hashing fields Jakub Kicinski
2025-07-16 7:28 ` Gal Pressman
2025-07-16 0:03 ` [PATCH net-next v3 11/11] selftests: drv-net: rss_api: test input-xfrm and hash fields Jakub Kicinski
2025-07-17 23:30 ` patchwork-bot+netdevbpf [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=175279501975.2106430.2106781743672298732.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=andrew+netdev@lunn.ch \
--cc=andrew@lunn.ch \
--cc=davem@davemloft.net \
--cc=donald.hunter@gmail.com \
--cc=ecree.xilinx@gmail.com \
--cc=edumazet@google.com \
--cc=gal@nvidia.com \
--cc=horms@kernel.org \
--cc=jdamato@fastly.com \
--cc=kory.maincent@bootlin.com \
--cc=kuba@kernel.org \
--cc=maxime.chevallier@bootlin.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=sdf@fomichev.me \
--cc=shuah@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.