diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2015-04-02 18:07:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-02 21:05:00 +0300 |
commit | 1e99584b911cb6f3d2a681e2532d8dc3f9339c9c (patch) | |
tree | eec4ef0b2a2179418d5a4c7525eaec261d273bf5 /net/ipv4/ip_gre.c | |
parent | ecf2c06a88d2ed534a87b84b8c1a467ab23352dd (diff) | |
download | linux-1e99584b911cb6f3d2a681e2532d8dc3f9339c9c.tar.xz |
ipip,gre,vti,sit: implement ndo_get_iflink
Don't use dev->iflink anymore.
CC: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_gre.c')
-rw-r--r-- | net/ipv4/ip_gre.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 0eb2a040a830..1060ca0bc23a 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c @@ -456,6 +456,7 @@ static const struct net_device_ops ipgre_netdev_ops = { .ndo_do_ioctl = ipgre_tunnel_ioctl, .ndo_change_mtu = ip_tunnel_change_mtu, .ndo_get_stats64 = ip_tunnel_get_stats64, + .ndo_get_iflink = ip_tunnel_get_iflink, }; #define GRE_FEATURES (NETIF_F_SG | \ @@ -686,6 +687,7 @@ static const struct net_device_ops gre_tap_netdev_ops = { .ndo_validate_addr = eth_validate_addr, .ndo_change_mtu = ip_tunnel_change_mtu, .ndo_get_stats64 = ip_tunnel_get_stats64, + .ndo_get_iflink = ip_tunnel_get_iflink, }; static void ipgre_tap_setup(struct net_device *dev) |