From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexey Kodanev Subject: [PATCH net] ip6_gre: remove redundant 'tunnel' setting in ip6erspan_tap_init() Date: Fri, 30 Mar 2018 20:34:33 +0300 Message-ID: <1522431273-15591-1-git-send-email-alexey.kodanev@oracle.com> Cc: William Tu , David Miller , Alexey Kodanev To: netdev@vger.kernel.org Return-path: Received: from aserp2120.oracle.com ([141.146.126.78]:36190 "EHLO aserp2120.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752686AbeC3RZM (ORCPT ); Fri, 30 Mar 2018 13:25:12 -0400 Sender: netdev-owner@vger.kernel.org List-ID: '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 --- net/ipv6/ip6_gre.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c index 1bbd093..09901be 100644 --- a/net/ipv6/ip6_gre.c +++ b/net/ipv6/ip6_gre.c @@ -1757,7 +1757,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; -- 1.8.3.1