aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/bridge/br_fdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bridge/br_fdb.c b/net/bridge/br_fdb.c
index f963f6b1884f..5ba0c844d508 100644
--- a/net/bridge/br_fdb.c
+++ b/net/bridge/br_fdb.c
@@ -146,7 +146,7 @@ void br_fdb_cleanup(unsigned long _data)
146 unsigned long next_timer = jiffies + br->ageing_time; 146 unsigned long next_timer = jiffies + br->ageing_time;
147 int i; 147 int i;
148 148
149 spin_lock_bh(&br->hash_lock); 149 spin_lock(&br->hash_lock);
150 for (i = 0; i < BR_HASH_SIZE; i++) { 150 for (i = 0; i < BR_HASH_SIZE; i++) {
151 struct net_bridge_fdb_entry *f; 151 struct net_bridge_fdb_entry *f;
152 struct hlist_node *h, *n; 152 struct hlist_node *h, *n;
@@ -162,7 +162,7 @@ void br_fdb_cleanup(unsigned long _data)
162 next_timer = this_timer; 162 next_timer = this_timer;
163 } 163 }
164 } 164 }
165 spin_unlock_bh(&br->hash_lock); 165 spin_unlock(&br->hash_lock);
166 166
167 mod_timer(&br->gc_timer, round_jiffies_up(next_timer)); 167 mod_timer(&br->gc_timer, round_jiffies_up(next_timer));
168} 168}