diff options
author | stephen hemminger <shemminger@vyatta.com> | 2010-09-08 05:16:28 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-10 15:47:59 -0400 |
commit | 9ca7f8762299bb391c11a81c844224216e925b5c (patch) | |
tree | f4e3b114727a1fef133dd617c37d816da46703d3 /net | |
parent | a034ee3cca5726b14107f281f4bed1c0fd44472a (diff) |
pkt_sched: remov unnecessary bh_disable
Now that est_tree_lock is acquired with BH protection, the other
call is unnecessary.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/gen_estimator.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/core/gen_estimator.c b/net/core/gen_estimator.c index 6743146e4d6b..7c2373321b74 100644 --- a/net/core/gen_estimator.c +++ b/net/core/gen_estimator.c | |||
@@ -274,9 +274,9 @@ void gen_kill_estimator(struct gnet_stats_basic_packed *bstats, | |||
274 | while ((e = gen_find_node(bstats, rate_est))) { | 274 | while ((e = gen_find_node(bstats, rate_est))) { |
275 | rb_erase(&e->node, &est_root); | 275 | rb_erase(&e->node, &est_root); |
276 | 276 | ||
277 | write_lock_bh(&est_lock); | 277 | write_lock(&est_lock); |
278 | e->bstats = NULL; | 278 | e->bstats = NULL; |
279 | write_unlock_bh(&est_lock); | 279 | write_unlock(&est_lock); |
280 | 280 | ||
281 | list_del_rcu(&e->list); | 281 | list_del_rcu(&e->list); |
282 | call_rcu(&e->e_rcu, __gen_kill_estimator); | 282 | call_rcu(&e->e_rcu, __gen_kill_estimator); |