|
@@ -1076,7 +1076,6 @@ static void ipip6_tunnel_bind_dev(struct net_device *dev)
|
|
|
if (dev->mtu < IPV6_MIN_MTU)
|
|
|
dev->mtu = IPV6_MIN_MTU;
|
|
|
}
|
|
|
- dev->iflink = tunnel->parms.link;
|
|
|
}
|
|
|
|
|
|
static void ipip6_tunnel_update(struct ip_tunnel *t, struct ip_tunnel_parm *p)
|
|
@@ -1336,6 +1335,7 @@ static const struct net_device_ops ipip6_netdev_ops = {
|
|
|
.ndo_do_ioctl = ipip6_tunnel_ioctl,
|
|
|
.ndo_change_mtu = ipip6_tunnel_change_mtu,
|
|
|
.ndo_get_stats64 = ip_tunnel_get_stats64,
|
|
|
+ .ndo_get_iflink = ip_tunnel_get_iflink,
|
|
|
};
|
|
|
|
|
|
static void ipip6_dev_free(struct net_device *dev)
|
|
@@ -1366,7 +1366,6 @@ static void ipip6_tunnel_setup(struct net_device *dev)
|
|
|
dev->mtu = ETH_DATA_LEN - t_hlen;
|
|
|
dev->flags = IFF_NOARP;
|
|
|
netif_keep_dst(dev);
|
|
|
- dev->iflink = 0;
|
|
|
dev->addr_len = 4;
|
|
|
dev->features |= NETIF_F_LLTX;
|
|
|
dev->features |= SIT_FEATURES;
|