aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/core/dev.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 5379b0c1190a..b21ad0b47aae 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1722,6 +1722,13 @@ static u16 simple_tx_hash(struct net_device *dev, struct sk_buff *skb)
1722 simple_tx_hashrnd_initialized = 1; 1722 simple_tx_hashrnd_initialized = 1;
1723 } 1723 }
1724 1724
1725 if (skb_rx_queue_recorded(skb)) {
1726 u32 val = skb_get_rx_queue(skb);
1727
1728 hash = jhash_1word(val, simple_tx_hashrnd);
1729 goto out;
1730 }
1731
1725 switch (skb->protocol) { 1732 switch (skb->protocol) {
1726 case htons(ETH_P_IP): 1733 case htons(ETH_P_IP):
1727 if (!(ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET))) 1734 if (!(ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)))
@@ -1759,6 +1766,7 @@ static u16 simple_tx_hash(struct net_device *dev, struct sk_buff *skb)
1759 1766
1760 hash = jhash_3words(addr1, addr2, ports, simple_tx_hashrnd); 1767 hash = jhash_3words(addr1, addr2, ports, simple_tx_hashrnd);
1761 1768
1769out:
1762 return (u16) (((u64) hash * dev->real_num_tx_queues) >> 32); 1770 return (u16) (((u64) hash * dev->real_num_tx_queues) >> 32);
1763} 1771}
1764 1772