Skip to content

Commit a4ee3ce

Browse files
krkumardavem330
authored andcommitted
net: Use sk_tx_queue_mapping for connected sockets
For connected sockets, the first run of dev_pick_tx saves the calculated txq in sk_tx_queue_mapping. This is not saved if either the device has a queue select or the socket is not connected. Next iterations of dev_pick_tx uses the cached value of sk_tx_queue_mapping. Signed-off-by: Krishna Kumar <krkumar2@in.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent ea94ff3 commit a4ee3ce

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

net/core/dev.c

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1791,13 +1791,25 @@ EXPORT_SYMBOL(skb_tx_hash);
17911791
static struct netdev_queue *dev_pick_tx(struct net_device *dev,
17921792
struct sk_buff *skb)
17931793
{
1794-
const struct net_device_ops *ops = dev->netdev_ops;
1795-
u16 queue_index = 0;
1794+
u16 queue_index;
1795+
struct sock *sk = skb->sk;
1796+
1797+
if (sk_tx_queue_recorded(sk)) {
1798+
queue_index = sk_tx_queue_get(sk);
1799+
} else {
1800+
const struct net_device_ops *ops = dev->netdev_ops;
17961801

1797-
if (ops->ndo_select_queue)
1798-
queue_index = ops->ndo_select_queue(dev, skb);
1799-
else if (dev->real_num_tx_queues > 1)
1800-
queue_index = skb_tx_hash(dev, skb);
1802+
if (ops->ndo_select_queue) {
1803+
queue_index = ops->ndo_select_queue(dev, skb);
1804+
} else {
1805+
queue_index = 0;
1806+
if (dev->real_num_tx_queues > 1)
1807+
queue_index = skb_tx_hash(dev, skb);
1808+
1809+
if (sk && sk->sk_dst_cache)
1810+
sk_tx_queue_set(sk, queue_index);
1811+
}
1812+
}
18011813

18021814
skb_set_queue_mapping(skb, queue_index);
18031815
return netdev_get_tx_queue(dev, queue_index);

0 commit comments

Comments
 (0)