aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/gen_estimator.c
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@vyatta.com>2008-11-26 00:14:06 -0500
committerDavid S. Miller <davem@davemloft.net>2008-11-26 00:14:06 -0500
commitc1b56878fb68e9c14070939ea4537ad4db79ffae (patch)
tree589f890f81e075380493905509244a0970d942f8 /net/core/gen_estimator.c
parent71bcb09a57894fa35591ce93dd972065eeecb63a (diff)
tc: policing requires a rate estimator
Found that while trying average rate policing, it was possible to request average rate policing without a rate estimator. This results in no policing which is harmless but incorrect. Since policing could be setup in two steps, need to check in the kernel. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/gen_estimator.c')
-rw-r--r--net/core/gen_estimator.c30
1 files changed, 27 insertions, 3 deletions
diff --git a/net/core/gen_estimator.c b/net/core/gen_estimator.c
index 80aa160877e..3885550f018 100644
--- a/net/core/gen_estimator.c
+++ b/net/core/gen_estimator.c
@@ -242,6 +242,7 @@ int gen_new_estimator(struct gnet_stats_basic *bstats,
242 242
243 return 0; 243 return 0;
244} 244}
245EXPORT_SYMBOL(gen_new_estimator);
245 246
246static void __gen_kill_estimator(struct rcu_head *head) 247static void __gen_kill_estimator(struct rcu_head *head)
247{ 248{
@@ -275,6 +276,7 @@ void gen_kill_estimator(struct gnet_stats_basic *bstats,
275 call_rcu(&e->e_rcu, __gen_kill_estimator); 276 call_rcu(&e->e_rcu, __gen_kill_estimator);
276 } 277 }
277} 278}
279EXPORT_SYMBOL(gen_kill_estimator);
278 280
279/** 281/**
280 * gen_replace_estimator - replace rate estimator configuration 282 * gen_replace_estimator - replace rate estimator configuration
@@ -295,8 +297,30 @@ int gen_replace_estimator(struct gnet_stats_basic *bstats,
295 gen_kill_estimator(bstats, rate_est); 297 gen_kill_estimator(bstats, rate_est);
296 return gen_new_estimator(bstats, rate_est, stats_lock, opt); 298 return gen_new_estimator(bstats, rate_est, stats_lock, opt);
297} 299}
300EXPORT_SYMBOL(gen_replace_estimator);
301
302/**
303 * gen_estimator_active - test if estimator is currently in use
304 * @rate_est: rate estimator statistics
305 *
306 * Returns 1 if estimator is active, and 0 if not.
307 */
308int gen_estimator_active(const struct gnet_stats_rate_est *rate_est)
309{
310 int idx;
311 struct gen_estimator *e;
298 312
313 ASSERT_RTNL();
299 314
300EXPORT_SYMBOL(gen_kill_estimator); 315 for (idx=0; idx <= EST_MAX_INTERVAL; idx++) {
301EXPORT_SYMBOL(gen_new_estimator); 316 if (!elist[idx].timer.function)
302EXPORT_SYMBOL(gen_replace_estimator); 317 continue;
318
319 list_for_each_entry(e, &elist[idx].list, list) {
320 if (e->rate_est == rate_est)
321 return 1;
322 }
323 }
324 return 0;
325}
326EXPORT_SYMBOL(gen_estimator_active);