diff options
author | Litao Jiao <jiaolitao@raisecom.com> | 2019-03-06 12:01:48 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-08 14:45:42 -0800 |
commit | f98ec788511b5e06b1ca668d380d42cd6742a75a (patch) | |
tree | 4d8a21557d491620d4b113036dfb9d24e3a1d848 /drivers | |
parent | d394d33bee22421b39a0bcdc51ca6d68ba308625 (diff) | |
download | linux-f98ec788511b5e06b1ca668d380d42cd6742a75a.tar.gz linux-f98ec788511b5e06b1ca668d380d42cd6742a75a.tar.bz2 linux-f98ec788511b5e06b1ca668d380d42cd6742a75a.zip |
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: Litao Jiao <jiaolitao@raisecom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/vxlan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index 76abd31e8d56..7610c51b33a0 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -2690,7 +2690,7 @@ static void vxlan_cleanup(struct timer_list *t) for (h = 0; h < FDB_HASH_SIZE; ++h) { 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]) { struct vxlan_fdb *f = container_of(p, struct vxlan_fdb, hlist); @@ -2712,7 +2712,7 @@ static void vxlan_cleanup(struct timer_list *t) } else if (time_before(timeout, next_timer)) next_timer = timeout; } - spin_unlock_bh(&vxlan->hash_lock); + spin_unlock(&vxlan->hash_lock); } mod_timer(&vxlan->age_timer, next_timer); |