Skip to content

Commit b973a40

Browse files
walking-machineroxanan1996
authored andcommitted
ice: Interpret .set_channels() input differently
BugLink: https://bugs.launchpad.net/bugs/2072617 [ Upstream commit 05d6f44 ] A bug occurs because a safety check guarding AF_XDP-related queues in ethnl_set_channels(), does not trigger. This happens, because kernel and ice driver interpret the ethtool command differently. How the bug occurs: 1. ethtool -l <IFNAME> -> combined: 40 2. Attach AF_XDP to queue 30 3. ethtool -L <IFNAME> rx 15 tx 15 combined number is not specified, so command becomes {rx_count = 15, tx_count = 15, combined_count = 40}. 4. ethnl_set_channels checks, if there are any AF_XDP of queues from the new (combined_count + rx_count) to the old one, so from 55 to 40, check does not trigger. 5. ice interprets `rx 15 tx 15` as 15 combined channels and deletes the queue that AF_XDP is attached to. Interpret the command in a way that is more consistent with ethtool manual [0] (--show-channels and --set-channels). Considering that in the ice driver only the difference between RX and TX queues forms dedicated channels, change the correct way to set number of channels to: ethtool -L <IFNAME> combined 10 /* For symmetric queues */ ethtool -L <IFNAME> combined 8 tx 2 rx 0 /* For asymmetric queues */ [0] https://man7.org/linux/man-pages/man8/ethtool.8.html Fixes: 87324e7 ("ice: Implement ethtool ops for channels") Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Signed-off-by: Larysa Zaremba <larysa.zaremba@intel.com> Tested-by: Chandan Kumar Rout <chandanx.rout@intel.com> Tested-by: Pucha Himasekhar Reddy <himasekharx.reddy.pucha@intel.com> Acked-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com> Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Portia Stephens <portia.stephens@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
1 parent da74c5a commit b973a40

1 file changed

Lines changed: 2 additions & 17 deletions

File tree

drivers/net/ethernet/intel/ice/ice_ethtool.c

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3394,7 +3394,6 @@ static int ice_set_channels(struct net_device *dev, struct ethtool_channels *ch)
33943394
struct ice_pf *pf = vsi->back;
33953395
int new_rx = 0, new_tx = 0;
33963396
bool locked = false;
3397-
u32 curr_combined;
33983397
int ret = 0;
33993398

34003399
/* do not support changing channels in Safe Mode */
@@ -3411,22 +3410,8 @@ static int ice_set_channels(struct net_device *dev, struct ethtool_channels *ch)
34113410
return -EOPNOTSUPP;
34123411
}
34133412

3414-
curr_combined = ice_get_combined_cnt(vsi);
3415-
3416-
/* these checks are for cases where user didn't specify a particular
3417-
* value on cmd line but we get non-zero value anyway via
3418-
* get_channels(); look at ethtool.c in ethtool repository (the user
3419-
* space part), particularly, do_schannels() routine
3420-
*/
3421-
if (ch->rx_count == vsi->num_rxq - curr_combined)
3422-
ch->rx_count = 0;
3423-
if (ch->tx_count == vsi->num_txq - curr_combined)
3424-
ch->tx_count = 0;
3425-
if (ch->combined_count == curr_combined)
3426-
ch->combined_count = 0;
3427-
3428-
if (!(ch->combined_count || (ch->rx_count && ch->tx_count))) {
3429-
netdev_err(dev, "Please specify at least 1 Rx and 1 Tx channel\n");
3413+
if (ch->rx_count && ch->tx_count) {
3414+
netdev_err(dev, "Dedicated RX or TX channels cannot be used simultaneously\n");
34303415
return -EINVAL;
34313416
}
34323417

0 commit comments

Comments
 (0)