Commit f98ec788 authored by Litao Jiao's avatar Litao Jiao Committed by David S. Miller

vxlan: do not need BH again in vxlan_cleanup()

vxlan_cleanup() is a timer callback, it is already
and only running in BH context.
Signed-off-by: default avatarLitao Jiao <jiaolitao@raisecom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d394d33b
...@@ -2690,7 +2690,7 @@ static void vxlan_cleanup(struct timer_list *t) ...@@ -2690,7 +2690,7 @@ static void vxlan_cleanup(struct timer_list *t)
for (h = 0; h < FDB_HASH_SIZE; ++h) { for (h = 0; h < FDB_HASH_SIZE; ++h) {
struct hlist_node *p, *n; struct hlist_node *p, *n;
spin_lock_bh(&vxlan->hash_lock); spin_lock(&vxlan->hash_lock);
hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) { hlist_for_each_safe(p, n, &vxlan->fdb_head[h]) {
struct vxlan_fdb *f struct vxlan_fdb *f
= container_of(p, struct vxlan_fdb, hlist); = container_of(p, struct vxlan_fdb, hlist);
...@@ -2712,7 +2712,7 @@ static void vxlan_cleanup(struct timer_list *t) ...@@ -2712,7 +2712,7 @@ static void vxlan_cleanup(struct timer_list *t)
} else if (time_before(timeout, next_timer)) } else if (time_before(timeout, next_timer))
next_timer = timeout; next_timer = timeout;
} }
spin_unlock_bh(&vxlan->hash_lock); spin_unlock(&vxlan->hash_lock);
} }
mod_timer(&vxlan->age_timer, next_timer); mod_timer(&vxlan->age_timer, next_timer);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment