Skip to content

Commit

Permalink
pkt_sched: Check the state of tx_queue in dequeue_skb()
Browse files Browse the repository at this point in the history
Check in dequeue_skb() the state of tx_queue for requeued skb to save
on locking and re-requeuing, and possibly remove the current check in
qdisc_run(). Based on the idea of Alexander Duyck.

Signed-off-by: Jarek Poplawski <jarkao2@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jarek Poplawski authored and David S. Miller committed Sep 23, 2008
1 parent f087652 commit ebf0598
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions net/sched/sch_generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,21 @@ static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q)

static inline struct sk_buff *dequeue_skb(struct Qdisc *q)
{
struct sk_buff *skb;

skb = __skb_dequeue(&q->requeue);
if (!skb)
struct sk_buff *skb = skb_peek(&q->requeue);

if (unlikely(skb)) {
struct net_device *dev = qdisc_dev(q);
struct netdev_queue *txq;

/* check the reason of requeuing without tx lock first */
txq = netdev_get_tx_queue(dev, skb_get_queue_mapping(skb));
if (!netif_tx_queue_stopped(txq) && !netif_tx_queue_frozen(txq))
__skb_unlink(skb, &q->requeue);
else
skb = NULL;
} else {
skb = q->dequeue(q);
}

return skb;
}
Expand Down

0 comments on commit ebf0598

Please sign in to comment.