This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / net / sched / sch_hfsc.c
index c6288de..fa1a9e5 100644 (file)
@@ -122,9 +122,7 @@ struct hfsc_class
        u32             classid;        /* class id */
        unsigned int    refcnt;         /* usage count */
 
-       struct gnet_stats_basic bstats;
-       struct gnet_stats_queue qstats;
-       struct gnet_stats_rate_est rate_est;
+       struct tc_stats stats;          /* generic statistics */
        spinlock_t      *stats_lock;
        unsigned int    level;          /* class level in hierarchy */
        struct tcf_proto *filter_list;  /* filter list */
@@ -1100,9 +1098,11 @@ hfsc_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
                sch_tree_unlock(sch);
 
 #ifdef CONFIG_NET_ESTIMATOR
-               if (tca[TCA_RATE-1])
-                       gen_replace_estimator(&cl->bstats, &cl->rate_est,
-                               cl->stats_lock, tca[TCA_RATE-1]);
+               if (tca[TCA_RATE-1]) {
+                       qdisc_kill_estimator(&cl->stats);
+                       qdisc_new_estimator(&cl->stats, cl->stats_lock,
+                                           tca[TCA_RATE-1]);
+               }
 #endif
                return 0;
        }
@@ -1160,8 +1160,8 @@ hfsc_change_class(struct Qdisc *sch, u32 classid, u32 parentid,
 
 #ifdef CONFIG_NET_ESTIMATOR
        if (tca[TCA_RATE-1])
-               gen_new_estimator(&cl->bstats, &cl->rate_est,
-                       cl->stats_lock, tca[TCA_RATE-1]);
+               qdisc_new_estimator(&cl->stats, cl->stats_lock,
+                                   tca[TCA_RATE-1]);
 #endif
        *arg = (unsigned long)cl;
        return 0;
@@ -1186,7 +1186,7 @@ hfsc_destroy_class(struct Qdisc *sch, struct hfsc_class *cl)
        hfsc_destroy_filters(&cl->filter_list);
        qdisc_destroy(cl->qdisc);
 #ifdef CONFIG_NET_ESTIMATOR
-       gen_kill_estimator(&cl->bstats, &cl->rate_est);
+       qdisc_kill_estimator(&cl->stats);
 #endif
        if (cl != &q->root)
                kfree(cl);
@@ -1404,6 +1404,36 @@ hfsc_dump_curves(struct sk_buff *skb, struct hfsc_class *cl)
        return -1;
 }
 
+static inline int
+hfsc_dump_stats(struct sk_buff *skb, struct hfsc_class *cl)
+{
+       cl->stats.qlen = cl->qdisc->q.qlen;
+       if (qdisc_copy_stats(skb, &cl->stats, cl->stats_lock) < 0)
+               goto rtattr_failure;
+
+       return skb->len;
+
+ rtattr_failure:
+       return -1;
+}
+
+static inline int
+hfsc_dump_xstats(struct sk_buff *skb, struct hfsc_class *cl)
+{
+       struct tc_hfsc_stats xstats;
+
+       xstats.level  = cl->level;
+       xstats.period = cl->cl_vtperiod;
+       xstats.work   = cl->cl_total;
+       xstats.rtwork = cl->cl_cumul;
+       RTA_PUT(skb, TCA_XSTATS, sizeof(xstats), &xstats);
+
+       return skb->len;
+
+ rtattr_failure:
+       return -1;
+}
+
 static int
 hfsc_dump_class(struct Qdisc *sch, unsigned long arg, struct sk_buff *skb,
                 struct tcmsg *tcm)
@@ -1421,6 +1451,11 @@ hfsc_dump_class(struct Qdisc *sch, unsigned long arg, struct sk_buff *skb,
        if (hfsc_dump_curves(skb, cl) < 0)
                goto rtattr_failure;
        rta->rta_len = skb->tail - b;
+
+       if ((hfsc_dump_stats(skb, cl) < 0) ||
+           (hfsc_dump_xstats(skb, cl) < 0))
+               goto rtattr_failure;
+
        return skb->len;
 
  rtattr_failure:
@@ -1428,31 +1463,6 @@ hfsc_dump_class(struct Qdisc *sch, unsigned long arg, struct sk_buff *skb,
        return -1;
 }
 
-static int
-hfsc_dump_class_stats(struct Qdisc *sch, unsigned long arg,
-       struct gnet_dump *d)
-{
-       struct hfsc_class *cl = (struct hfsc_class *)arg;
-       struct tc_hfsc_stats xstats;
-
-       cl->qstats.qlen = cl->qdisc->q.qlen;
-       xstats.level   = cl->level;
-       xstats.period  = cl->cl_vtperiod;
-       xstats.work    = cl->cl_total;
-       xstats.rtwork  = cl->cl_cumul;
-
-       if (gnet_stats_copy_basic(d, &cl->bstats) < 0 ||
-#ifdef CONFIG_NET_ESTIMATOR
-           gnet_stats_copy_rate_est(d, &cl->rate_est) < 0 ||
-#endif
-           gnet_stats_copy_queue(d, &cl->qstats) < 0)
-               return -1;
-
-       return gnet_stats_copy_app(d, &xstats, sizeof(xstats));
-}
-
-
-
 static void
 hfsc_walk(struct Qdisc *sch, struct qdisc_walker *arg)
 {
@@ -1643,6 +1653,11 @@ hfsc_dump_qdisc(struct Qdisc *sch, struct sk_buff *skb)
 
        qopt.defcls = q->defcls;
        RTA_PUT(skb, TCA_OPTIONS, sizeof(qopt), &qopt);
+
+       sch->stats.qlen = sch->q.qlen;
+       if (qdisc_copy_stats(skb, &sch->stats, sch->stats_lock) < 0)
+               goto rtattr_failure;
+
        return skb->len;
 
  rtattr_failure:
@@ -1662,32 +1677,32 @@ hfsc_enqueue(struct sk_buff *skb, struct Qdisc *sch)
 #ifdef CONFIG_NET_CLS_ACT
        if (cl == NULL) {
                if (NET_XMIT_DROP == ret) {
-                       sch->qstats.drops++;
+                       sch->stats.drops++;
                }
                return ret;
        }
 #else
        if (cl == NULL) {
                kfree_skb(skb);
-               sch->qstats.drops++;
+               sch->stats.drops++;
                return NET_XMIT_DROP;
        }
 #endif
 
        err = cl->qdisc->enqueue(skb, cl->qdisc);
        if (unlikely(err != NET_XMIT_SUCCESS)) {
-               cl->qstats.drops++;
-               sch->qstats.drops++;
+               cl->stats.drops++;
+               sch->stats.drops++;
                return err;
        }
 
        if (cl->qdisc->q.qlen == 1)
                set_active(cl, len);
 
-       cl->bstats.packets++;
-       cl->bstats.bytes += len;
-       sch->bstats.packets++;
-       sch->bstats.bytes += len;
+       cl->stats.packets++;
+       cl->stats.bytes += len;
+       sch->stats.packets++;
+       sch->stats.bytes += len;
        sch->q.qlen++;
 
        return NET_XMIT_SUCCESS;
@@ -1724,7 +1739,7 @@ hfsc_dequeue(struct Qdisc *sch)
                 */
                cl = vttree_get_minvt(&q->root, cur_time);
                if (cl == NULL) {
-                       sch->qstats.overlimits++;
+                       sch->stats.overlimits++;
                        hfsc_schedule_watchdog(sch, cur_time);
                        return NULL;
                }
@@ -1769,7 +1784,6 @@ hfsc_requeue(struct sk_buff *skb, struct Qdisc *sch)
 
        __skb_queue_head(&q->requeue, skb);
        sch->q.qlen++;
-       sch->qstats.requeues++;
        return NET_XMIT_SUCCESS;
 }
 
@@ -1789,8 +1803,8 @@ hfsc_drop(struct Qdisc *sch)
                        } else {
                                list_move_tail(&cl->dlist, &q->droplist);
                        }
-                       cl->qstats.drops++;
-                       sch->qstats.drops++;
+                       cl->stats.drops++;
+                       sch->stats.drops++;
                        sch->q.qlen--;
                        return len;
                }
@@ -1809,7 +1823,6 @@ static struct Qdisc_class_ops hfsc_class_ops = {
        .unbind_tcf     = hfsc_unbind_tcf,
        .tcf_chain      = hfsc_tcf_chain,
        .dump           = hfsc_dump_class,
-       .dump_stats     = hfsc_dump_class_stats,
        .walk           = hfsc_walk
 };