vxlan: Correct merge error.
authorDavid S. Miller <davem@davemloft.net>
Fri, 21 Dec 2018 00:14:22 +0000 (16:14 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 21 Dec 2018 00:14:22 +0000 (16:14 -0800)
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>
drivers/net/vxlan.c

index 3d773634a8e240b9877e94a5de14fffd66507e28..5209ee9aac47846367d7f469a7e69d08c030087e 100644 (file)
@@ -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;