]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
sched: don't use skb queue helpers
authorFlorian Westphal <fw@strlen.de>
Sat, 17 Sep 2016 22:57:31 +0000 (00:57 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 19 Sep 2016 05:47:18 +0000 (01:47 -0400)
A followup change will replace the sk_buff_head in the qdisc
struct with a slightly different list.

Use of the sk_buff_head helpers will thus cause compiler
warnings.

Open-code these accesses in an extra change to ease review.

Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_fifo.c
net/sched/sch_generic.c
net/sched/sch_netem.c

index baeed6a78d286b7b9ff230134c73085efa2ea1f5..1e37247656f80e5c3368538c2f73b5f86c77ad50 100644 (file)
@@ -31,7 +31,7 @@ static int bfifo_enqueue(struct sk_buff *skb, struct Qdisc *sch,
 static int pfifo_enqueue(struct sk_buff *skb, struct Qdisc *sch,
                         struct sk_buff **to_free)
 {
-       if (likely(skb_queue_len(&sch->q) < sch->limit))
+       if (likely(sch->q.qlen < sch->limit))
                return qdisc_enqueue_tail(skb, sch);
 
        return qdisc_drop(skb, sch, to_free);
@@ -42,7 +42,7 @@ static int pfifo_tail_enqueue(struct sk_buff *skb, struct Qdisc *sch,
 {
        unsigned int prev_backlog;
 
-       if (likely(skb_queue_len(&sch->q) < sch->limit))
+       if (likely(sch->q.qlen < sch->limit))
                return qdisc_enqueue_tail(skb, sch);
 
        prev_backlog = sch->qstats.backlog;
index 0d21b567ff27e7b71c728edf7ae97e506f5f0499..5e63bf6383502cfec150118dac6ae36052861f03 100644 (file)
@@ -486,7 +486,7 @@ static inline struct sk_buff_head *band2list(struct pfifo_fast_priv *priv,
 static int pfifo_fast_enqueue(struct sk_buff *skb, struct Qdisc *qdisc,
                              struct sk_buff **to_free)
 {
-       if (skb_queue_len(&qdisc->q) < qdisc_dev(qdisc)->tx_queue_len) {
+       if (qdisc->q.qlen < qdisc_dev(qdisc)->tx_queue_len) {
                int band = prio2band[skb->priority & TC_PRIO_MAX];
                struct pfifo_fast_priv *priv = qdisc_priv(qdisc);
                struct sk_buff_head *list = band2list(priv, band);
index aaaf0217533831e49878267d7767db7e18f110a3..1832d7732dbc29b5ed4cb3db4f547880075ca0e6 100644 (file)
@@ -502,7 +502,7 @@ static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch,
                        1<<(prandom_u32() % 8);
        }
 
-       if (unlikely(skb_queue_len(&sch->q) >= sch->limit))
+       if (unlikely(sch->q.qlen >= sch->limit))
                return qdisc_drop(skb, sch, to_free);
 
        qdisc_qstats_backlog_inc(sch, skb);
@@ -522,7 +522,7 @@ static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch,
                if (q->rate) {
                        struct sk_buff *last;
 
-                       if (!skb_queue_empty(&sch->q))
+                       if (sch->q.qlen)
                                last = skb_peek_tail(&sch->q);
                        else
                                last = netem_rb_to_skb(rb_last(&q->t_root));