Commit 3a6d528a authored by David S. Miller's avatar David S. Miller

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: default avatarDavid S. Miller <davem@davemloft.net>
parent e7164313
......@@ -3768,7 +3768,7 @@ static int vxlan_changelink(struct net_device *dev, struct nlattr *tb[],
dst->remote_vni,
dst->remote_vni,
dst->remote_ifindex,
NTF_SELF, false);
NTF_SELF, true);
if (err) {
spin_unlock_bh(&vxlan->hash_lock);
return err;
......
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