mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
vxlan: Correct merge error.
When resolving the conflict wrt. the vxlan_fdb_update call in vxlan_changelink() I made the last argument false instead of true. Fix this. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e716431356
commit
3a6d528a5e
1 changed files with 1 additions and 1 deletions
|
|
@ -3768,7 +3768,7 @@ static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
|
||||||
dst->remote_vni,
|
dst->remote_vni,
|
||||||
dst->remote_vni,
|
dst->remote_vni,
|
||||||
dst->remote_ifindex,
|
dst->remote_ifindex,
|
||||||
NTF_SELF, false);
|
NTF_SELF, true);
|
||||||
if (err) {
|
if (err) {
|
||||||
spin_unlock_bh(&vxlan->hash_lock);
|
spin_unlock_bh(&vxlan->hash_lock);
|
||||||
return err;
|
return err;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue