Use hardware computed Toeplitz hash for incoming flowids
Use the Toeplitz hash value as source for the flowid. This makes the hash value more suitable for so-called hash bucket algorithms which are used in the FreeBSD's TCP/IP stack when RSS is enabled. Sponsored by: Mellanox Technologies MFC after: 1 week
This commit is contained in:
parent
9319562b86
commit
1f20c68e07
@ -616,7 +616,8 @@ int mlx4_en_process_rx_cq(struct net_device *dev, struct mlx4_en_cq *cq, int bud
|
||||
goto next;
|
||||
}
|
||||
|
||||
mb->m_pkthdr.flowid = cq->ring;
|
||||
/* forward Toeplitz compatible hash value */
|
||||
mb->m_pkthdr.flowid = be32_to_cpu(cqe->immed_rss_invalid);
|
||||
M_HASHTYPE_SET(mb, M_HASHTYPE_OPAQUE);
|
||||
mb->m_pkthdr.rcvif = dev;
|
||||
if (be32_to_cpu(cqe->vlan_my_qpn) &
|
||||
|
@ -1060,7 +1060,7 @@ mlx4_en_transmit(struct ifnet *dev, struct mbuf *m)
|
||||
|
||||
/* Compute which queue to use */
|
||||
if (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) {
|
||||
i = m->m_pkthdr.flowid % priv->tx_ring_num;
|
||||
i = (m->m_pkthdr.flowid % 128) % priv->tx_ring_num;
|
||||
}
|
||||
else {
|
||||
i = mlx4_en_select_queue(dev, m);
|
||||
|
Loading…
Reference in New Issue
Block a user