From: Jarek Poplawski Date: Wed, 8 Oct 2008 18:36:22 +0000 (-0700) Subject: pkt_sched: Update qdisc requeue stats in dev_requeue_skb() X-Git-Tag: v2.6.28-rc1~717^2~93 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=53e915034970935596703a6005cde27c2128b5c3;p=~emulex%2Finfiniband.git pkt_sched: Update qdisc requeue stats in dev_requeue_skb() After the last change of requeuing there is no info about such incidents in tc stats. This patch updates the counter, but we should consider this should differ from previous stats because of additional checks preventing to repeat this. On the other hand, previous stats didn't include requeuing of gso_segmented skbs. Signed-off-by: Jarek Poplawski Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_generic.c b/net/sched/sch_generic.c index 31f6b614b59..7b5572d6beb 100644 --- a/net/sched/sch_generic.c +++ b/net/sched/sch_generic.c @@ -45,6 +45,7 @@ static inline int qdisc_qlen(struct Qdisc *q) static inline int dev_requeue_skb(struct sk_buff *skb, struct Qdisc *q) { q->gso_skb = skb; + q->qstats.requeues++; __netif_schedule(q); return 0;