Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: arch/mips/net/bpf_jit.c drivers/net/can/flexcan.c Both the flexcan and MIPS bpf_jit conflicts were cases of simple overlapping changes. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -4865,9 +4865,14 @@ static void netdev_adjacent_sysfs_del(struct net_device *dev,
|
||||
sysfs_remove_link(&(dev->dev.kobj), linkname);
|
||||
}
|
||||
|
||||
#define netdev_adjacent_is_neigh_list(dev, dev_list) \
|
||||
(dev_list == &dev->adj_list.upper || \
|
||||
dev_list == &dev->adj_list.lower)
|
||||
static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
|
||||
struct net_device *adj_dev,
|
||||
struct list_head *dev_list)
|
||||
{
|
||||
return (dev_list == &dev->adj_list.upper ||
|
||||
dev_list == &dev->adj_list.lower) &&
|
||||
net_eq(dev_net(dev), dev_net(adj_dev));
|
||||
}
|
||||
|
||||
static int __netdev_adjacent_dev_insert(struct net_device *dev,
|
||||
struct net_device *adj_dev,
|
||||
@@ -4897,7 +4902,7 @@ static int __netdev_adjacent_dev_insert(struct net_device *dev,
|
||||
pr_debug("dev_hold for %s, because of link added from %s to %s\n",
|
||||
adj_dev->name, dev->name, adj_dev->name);
|
||||
|
||||
if (netdev_adjacent_is_neigh_list(dev, dev_list)) {
|
||||
if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
|
||||
ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
|
||||
if (ret)
|
||||
goto free_adj;
|
||||
@@ -4918,7 +4923,7 @@ static int __netdev_adjacent_dev_insert(struct net_device *dev,
|
||||
return 0;
|
||||
|
||||
remove_symlinks:
|
||||
if (netdev_adjacent_is_neigh_list(dev, dev_list))
|
||||
if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
|
||||
netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
|
||||
free_adj:
|
||||
kfree(adj);
|
||||
@@ -4951,8 +4956,7 @@ static void __netdev_adjacent_dev_remove(struct net_device *dev,
|
||||
if (adj->master)
|
||||
sysfs_remove_link(&(dev->dev.kobj), "master");
|
||||
|
||||
if (netdev_adjacent_is_neigh_list(dev, dev_list) &&
|
||||
net_eq(dev_net(dev),dev_net(adj_dev)))
|
||||
if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
|
||||
netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
|
||||
|
||||
list_del_rcu(&adj->list);
|
||||
|
Reference in New Issue
Block a user