mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
ipvlan: implement ndo_get_iflink
Don't use dev->iflink anymore. CC: Mahesh Bandewar <maheshb@google.com> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ef5fa6bc46
commit
7c4116588b
@ -114,7 +114,6 @@ static int ipvlan_init(struct net_device *dev)
|
||||
dev->features = phy_dev->features & IPVLAN_FEATURES;
|
||||
dev->features |= NETIF_F_LLTX;
|
||||
dev->gso_max_size = phy_dev->gso_max_size;
|
||||
dev->iflink = phy_dev->ifindex;
|
||||
dev->hard_header_len = phy_dev->hard_header_len;
|
||||
|
||||
ipvlan_set_lockdep_class(dev);
|
||||
@ -305,6 +304,13 @@ static int ipvlan_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ipvlan_get_iflink(const struct net_device *dev)
|
||||
{
|
||||
struct ipvl_dev *ipvlan = netdev_priv(dev);
|
||||
|
||||
return ipvlan->phy_dev->ifindex;
|
||||
}
|
||||
|
||||
static const struct net_device_ops ipvlan_netdev_ops = {
|
||||
.ndo_init = ipvlan_init,
|
||||
.ndo_uninit = ipvlan_uninit,
|
||||
@ -317,6 +323,7 @@ static const struct net_device_ops ipvlan_netdev_ops = {
|
||||
.ndo_get_stats64 = ipvlan_get_stats64,
|
||||
.ndo_vlan_rx_add_vid = ipvlan_vlan_rx_add_vid,
|
||||
.ndo_vlan_rx_kill_vid = ipvlan_vlan_rx_kill_vid,
|
||||
.ndo_get_iflink = ipvlan_get_iflink,
|
||||
};
|
||||
|
||||
static int ipvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
|
||||
|
Loading…
Reference in New Issue
Block a user