aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_fq.c
diff options
context:
space:
mode:
authorJohn Fastabend <john.fastabend@gmail.com>2014-09-28 14:53:29 -0400
committerDavid S. Miller <davem@davemloft.net>2014-09-30 01:02:26 -0400
commit25331d6ce42bcf4b34b6705fce4da15c3fabe62f (patch)
tree1c2d92a220f90f155de62a435753f09ff0c9ce91 /net/sched/sch_fq.c
parent22e0f8b9322cb1a48b1357e8f4ae6f5a9eca8cfa (diff)
net: sched: implement qstat helper routines
This adds helpers to manipulate qstats logic and replaces locations that touch the counters directly. This simplifies future patches to push qstats onto per cpu counters. Signed-off-by: John Fastabend <john.r.fastabend@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_fq.c')
-rw-r--r--net/sched/sch_fq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_fq.c b/net/sched/sch_fq.c
index e12f997e1b4c..c9b9fcb53206 100644
--- a/net/sched/sch_fq.c
+++ b/net/sched/sch_fq.c
@@ -290,7 +290,7 @@ static struct sk_buff *fq_dequeue_head(struct Qdisc *sch, struct fq_flow *flow)
290 flow->head = skb->next; 290 flow->head = skb->next;
291 skb->next = NULL; 291 skb->next = NULL;
292 flow->qlen--; 292 flow->qlen--;
293 sch->qstats.backlog -= qdisc_pkt_len(skb); 293 qdisc_qstats_backlog_dec(sch, skb);
294 sch->q.qlen--; 294 sch->q.qlen--;
295 } 295 }
296 return skb; 296 return skb;
@@ -371,7 +371,7 @@ static int fq_enqueue(struct sk_buff *skb, struct Qdisc *sch)
371 f->qlen++; 371 f->qlen++;
372 if (skb_is_retransmit(skb)) 372 if (skb_is_retransmit(skb))
373 q->stat_tcp_retrans++; 373 q->stat_tcp_retrans++;
374 sch->qstats.backlog += qdisc_pkt_len(skb); 374 qdisc_qstats_backlog_inc(sch, skb);
375 if (fq_flow_is_detached(f)) { 375 if (fq_flow_is_detached(f)) {
376 fq_flow_add_tail(&q->new_flows, f); 376 fq_flow_add_tail(&q->new_flows, f);
377 if (time_after(jiffies, f->age + q->flow_refill_delay)) 377 if (time_after(jiffies, f->age + q->flow_refill_delay))