Hi all, Today's linux-next merge of the net-next tree got a conflict in: drivers/net/vxlan.c between commits: 6db924687139 ("vxlan: Fix error path in __vxlan_dev_create()") ce5e098f7a10 ("vxlan: changelink: Fix handling of default remotes") from the net tree and commit: 0e6160f3f5a9 ("vxlan: vxlan_fdb_notify(): Make switchdev notification configurable") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc drivers/net/vxlan.c index 0565f8880199,71c3b7b6b1ab..000000000000 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@@ -3297,16 -3483,9 +3484,16 @@@ static int __vxlan_dev_create(struct ne list_add(&vxlan->next, &vn->vxlan_list); return 0; + errout: + /* unregister_netdevice() destroys the default FDB entry with deletion + * notification. But the addition notification was not sent yet, so + * destroy the entry by hand here. + */ if (f) - vxlan_fdb_destroy(vxlan, f, false); + vxlan_fdb_destroy(vxlan, f, false, false); + if (unregister) + unregister_netdevice(dev); return err; } @@@ -3540,8 -3719,10 +3727,9 @@@ static int vxlan_changelink(struct net_ { struct vxlan_dev *vxlan = netdev_priv(dev); struct vxlan_rdst *dst = &vxlan->default_dst; + unsigned long old_age_interval; struct vxlan_rdst old_dst; struct vxlan_config conf; - struct vxlan_fdb *f = NULL; int err; err = vxlan_nl2conf(tb, data, @@@ -3564,13 -3749,13 +3756,14 @@@ vxlan->cfg.dst_port, old_dst.remote_vni, old_dst.remote_vni, - old_dst.remote_ifindex, 0); + old_dst.remote_ifindex, + true); if (!vxlan_addr_any(&dst->remote_ip)) { - err = vxlan_fdb_create(vxlan, all_zeros_mac, + err = vxlan_fdb_update(vxlan, all_zeros_mac, &dst->remote_ip, NUD_REACHABLE | NUD_PERMANENT, + NLM_F_APPEND | NLM_F_CREATE, vxlan->cfg.dst_port, dst->remote_vni, dst->remote_vni,