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:
Daniel Borkmann 2014-08-27 11:11:27 +02:00 committed by David S. Miller
parent a3bf5c429e
commit 10c51b5623
5 changed files with 13 additions and 9 deletions

View file

@ -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());