diff options
Diffstat (limited to 'drivers/net/ixgbe')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 44adc9862826..52d7f19de435 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
@@ -5126,7 +5126,7 @@ static u16 ixgbe_select_queue(struct net_device *dev, struct sk_buff *skb) | |||
5126 | return smp_processor_id(); | 5126 | return smp_processor_id(); |
5127 | 5127 | ||
5128 | if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) | 5128 | if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) |
5129 | return 0; /* All traffic should default to class 0 */ | 5129 | return (skb->vlan_tci & IXGBE_TX_FLAGS_VLAN_PRIO_MASK) >> 13; |
5130 | 5130 | ||
5131 | return skb_tx_hash(dev, skb); | 5131 | return skb_tx_hash(dev, skb); |
5132 | } | 5132 | } |