Hi all, Today's linux-next merge of the net-next tree got a conflict in: include/linux/netdevice.h between commit: ab92d68fc22f ("net: core: add generic lockdep keys") from the net tree and commits: ff92741270bf ("net: introduce name_node struct to be used in hashlist") 36fbf1e52bd3 ("net: rtnetlink: add linkprop commands to add and delete alternative ifnames") 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 include/linux/netdevice.h index c20f190b4c18,3207e0b9ec4e..000000000000 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@@ -925,7 -925,16 +925,17 @@@ struct dev_ifalias struct devlink; struct tlsdev_ops; + struct netdev_name_node { + struct hlist_node hlist; + struct list_head list; + struct net_device *dev; + const char *name; + }; + + int netdev_name_node_alt_create(struct net_device *dev, const char *name); + int netdev_name_node_alt_destroy(struct net_device *dev, const char *name); + + /* * This structure defines the management hooks for network devices. * The following hooks can be defined; unless noted otherwise, they are