diff options
author | Jarek Poplawski <jarkao2@gmail.com> | 2009-09-17 10:26:07 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-17 10:26:07 -0700 |
commit | a19d2158439d6fba8160d7d2446f233f525f09e7 (patch) | |
tree | 85f54105fb6939efac2c26c3a08db7e543141b6d /net/sched/sch_mq.c | |
parent | 0522fea6505f7b03a82787acdc6ad3066d9b4de3 (diff) |
pkt_sched: Fix qstats.qlen updating in dump_stats
Some classful qdiscs miss qstats.qlen updating with q.qlen of their
child qdiscs in dump_stats methods.
Signed-off-by: Jarek Poplawski <jarkao2@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_mq.c')
-rw-r--r-- | net/sched/sch_mq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sched/sch_mq.c b/net/sched/sch_mq.c index 600c50143cc..d1dea3d5dc9 100644 --- a/net/sched/sch_mq.c +++ b/net/sched/sch_mq.c @@ -193,6 +193,7 @@ static int mq_dump_class_stats(struct Qdisc *sch, unsigned long cl, struct netdev_queue *dev_queue = mq_queue_get(sch, cl); sch = dev_queue->qdisc_sleeping; + sch->qstats.qlen = sch->q.qlen; if (gnet_stats_copy_basic(d, &sch->bstats) < 0 || gnet_stats_copy_queue(d, &sch->qstats) < 0) return -1; |