Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b86629eb authored by Alexander Duyck's avatar Alexander Duyck Committed by David S. Miller
Browse files

mlx4: Don't bother using skb_tx_hash in mlx4_en_select_queue



The code in the fallback path has supported XDP in conjunction with the Tx
traffic classification for TCs for over a year now. So instead of just
calling skb_tx_hash for every packet we are better off using the fallback
since that will record the Tx queue to the socket and then that can be used
instead of having to recompute the hash every time.

Signed-off-by: default avatarAlexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d80d8d55
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -694,7 +694,7 @@ u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb,
	u16 rings_p_up = priv->num_tx_rings_p_up;

	if (netdev_get_num_tc(dev))
		return skb_tx_hash(dev, skb);
		return fallback(dev, skb);

	return fallback(dev, skb) % rings_p_up;
}