net: add skb_get_tx_queue() helper
Replace occurences of skb_get_queue_mapping() and follow-up netdev_get_tx_queue() with an actual helper function. Signed-off-by: Daniel Borkmann <dborkman@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
a3bf5c429e
commit
10c51b5623
@@ -115,7 +115,7 @@ static void queue_process(struct work_struct *work)
|
||||
continue;
|
||||
}
|
||||
|
||||
txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
|
||||
txq = skb_get_tx_queue(dev, skb);
|
||||
|
||||
local_irq_save(flags);
|
||||
HARD_TX_LOCK(dev, txq, smp_processor_id());
|
||||
|
Reference in New Issue
Block a user