Hi all, Today's linux-next merge of the net-next tree got a conflict in: drivers/net/netdevsim/netdev.c between commit: 2c9d8e01f0c6 ("netdevsim: fix unbalaced locking in nsim_create()") from the net tree and commit: 424be63ad831 ("netdevsim: add UDP tunnel port offload support") 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/netdevsim/netdev.c index 23950e7a0f81,9d0d18026434..000000000000 --- a/drivers/net/netdevsim/netdev.c +++ b/drivers/net/netdevsim/netdev.c @@@ -316,8 -323,10 +323,10 @@@ nsim_create(struct nsim_dev *nsim_dev, err_ipsec_teardown: nsim_ipsec_teardown(ns); nsim_bpf_uninit(ns); +err_rtnl_unlock: rtnl_unlock(); -err_utn_destroy: + nsim_udp_tunnels_info_destroy(dev); + err_free_netdev: free_netdev(dev); return ERR_PTR(err); }