| To: | "David S. Miller" <davem@xxxxxxxxxxxxx> |
|---|---|
| Subject: | [PATCH 14/16] HFSC: Use generic rate estimator |
| From: | Thomas Graf <tgraf@xxxxxxx> |
| Date: | Thu, 21 Oct 2004 14:49:24 +0200 |
| Cc: | netdev@xxxxxxxxxxx, hadi@xxxxxxxxxx |
| In-reply-to: | <20041021123209.GE21977@xxxxxxxxxxxxxx> |
| References: | <20041021123209.GE21977@xxxxxxxxxxxxxx> |
| Sender: | netdev-bounce@xxxxxxxxxxx |
Makes HFSC use the generic rate estimator.
Signed-off-by: Thomas Graf <tgraf@xxxxxxx>
--- linux-2.6.9-rc5.orig/net/sched/sch_hfsc.c 2004-10-21 13:12:24.000000000
+0200
+++ linux-2.6.9-rc5/net/sched/sch_hfsc.c 2004-10-21 13:12:53.000000000
+0200
@@ -1100,11 +1100,9 @@
sch_tree_unlock(sch);
#ifdef CONFIG_NET_ESTIMATOR
- if (tca[TCA_RATE-1]) {
- qdisc_kill_estimator(&cl->stats);
- qdisc_new_estimator(&cl->stats, cl->stats_lock,
- tca[TCA_RATE-1]);
- }
+ if (tca[TCA_RATE-1])
+ gen_replace_estimator(&cl->bstats, &cl->rate_est,
+ cl->stats_lock, tca[TCA_RATE-1]);
#endif
return 0;
}
@@ -1162,8 +1160,8 @@
#ifdef CONFIG_NET_ESTIMATOR
if (tca[TCA_RATE-1])
- qdisc_new_estimator(&cl->stats, cl->stats_lock,
- tca[TCA_RATE-1]);
+ gen_new_estimator(&cl->bstats, &cl->rate_est,
+ cl->stats_lock, tca[TCA_RATE-1]);
#endif
*arg = (unsigned long)cl;
return 0;
@@ -1188,7 +1186,7 @@
hfsc_destroy_filters(&cl->filter_list);
qdisc_destroy(cl->qdisc);
#ifdef CONFIG_NET_ESTIMATOR
- qdisc_kill_estimator(&cl->stats);
+ gen_kill_estimator(&cl->bstats, &cl->rate_est);
#endif
if (cl != &q->root)
kfree(cl);
|
| Previous by Date: | [PATCH 13/16] HFSC: Use gnet_stats for class statistics, Thomas Graf |
|---|---|
| Next by Date: | [PATCH 15/16] HFSC: Use dump_stats for class statistics dumping, Thomas Graf |
| Previous by Thread: | [PATCH 13/16] HFSC: Use gnet_stats for class statistics, Thomas Graf |
| Next by Thread: | [PATCH 15/16] HFSC: Use dump_stats for class statistics dumping, Thomas Graf |
| Indexes: | [Date] [Thread] [Top] [All Lists] |