Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e1622baf authored by Nicolas Dichtel's avatar Nicolas Dichtel Committed by David S. Miller
Browse files

dev: set iflink to 0 for virtual interfaces



Virtual interfaces are supposed to set an iflink value != of their ifindex.
It was not the case for some of them, like vxlan, bond or bridge.
Let's set iflink to 0 when dev->rtnl_link_ops is set.

Signed-off-by: default avatarNicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7a66bbc9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -672,6 +672,10 @@ int dev_get_iflink(const struct net_device *dev)
	if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
		return dev->netdev_ops->ndo_get_iflink(dev);

	/* If dev->rtnl_link_ops is set, it's a virtual interface. */
	if (dev->rtnl_link_ops)
		return 0;

	return dev->ifindex;
}
EXPORT_SYMBOL(dev_get_iflink);