[PATCH net-next 1/9] net: benet: convert to use .get_rx_ring_count
Breno Leitao
leitao at debian.org
Mon Jan 19 03:07:12 PST 2026
Hello Jakub,
On Sat, Jan 17, 2026 at 06:15:51PM -0800, Jakub Kicinski wrote:
> On Thu, 15 Jan 2026 06:37:48 -0800 Breno Leitao wrote:
> > -static int be_get_rxnfc(struct net_device *netdev, struct ethtool_rxnfc *cmd,
> > - u32 *rule_locs)
> > -{
> > - struct be_adapter *adapter = netdev_priv(netdev);
> > -
> > - if (!be_multi_rxq(adapter)) {
> > - dev_info(&adapter->pdev->dev,
> > - "ethtool::get_rxnfc: RX flow hashing is disabled\n");
> > - return -EINVAL;
> > - }
>
> I think we need to add this check to set_rxfh now. The error coming
> from get_rxnfc/GRXRINGS effectively shielded the driver from set_rxfh
> calls ever happening when there's only 1 ring. Now they will happen.
You are absolutely correct. The ethtool core calls
get_rxnfc(ETHTOOL_GRXRINGS) _before_ allowing RSS configuration via
set_rxfh, and if it fails, ethtool_set_rxfh() will fail as well. And
with the current change, ethtool_set_rxfh() will not fail if the adapter
is not multi-queue.
Thanks for the heads-up. I will send a v2 shortly.
--breno
More information about the linux-arm-kernel
mailing list