diff options
author | Alexey Kodanev <alexey.kodanev@oracle.com> | 2018-03-30 20:34:33 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-01 14:02:32 -0400 |
commit | ec1258903a13d0255695a07280ae5e32303aa6c5 (patch) | |
tree | 38c1b5d25fb35eb508445b39098b9fb0e1728282 /net/ipv6 | |
parent | ce5a453c4421ccd68a98fd987b6878923c549be2 (diff) | |
download | linux-ec1258903a13d0255695a07280ae5e32303aa6c5.tar.bz2 |
ip6_gre: remove redundant 'tunnel' setting in ip6erspan_tap_init()
'tunnel' was already set at the start of ip6erspan_tap_init().
Fixes: 5a963eb61b7c ("ip6_gre: Add ERSPAN native tunnel support")
Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6_gre.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c index 22e86557aca4..f8a103bdbd60 100644 --- a/net/ipv6/ip6_gre.c +++ b/net/ipv6/ip6_gre.c @@ -1762,7 +1762,6 @@ static int ip6erspan_tap_init(struct net_device *dev) dev->mtu -= 8; dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; - tunnel = netdev_priv(dev); ip6gre_tnl_link_config(tunnel, 1); return 0; |