From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E5C64C33CB3 for ; Tue, 28 Jan 2020 14:48:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B2F6724683 for ; Tue, 28 Jan 2020 14:48:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580222903; bh=iikyDeTcnk5mV34AtN/hyjswYWiMptLtzK/jcLMufKs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=C8E2sycu2P6kX9q04y/lXeLLidAeI9Wu7wXrjz9rCmr8PmHj5Ehua0pHtkTGKrpF0 4Q+xeXuF139XW4BprPMBrN4l776P3A4FX2nYDIN3/2Ry6xk+1M+lMuW9EvKqCCEGln LUrhqg/enXQWZaTpNhb7tRvFRntK+TWfyfFTiMpE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727275AbgA1OCi (ORCPT ); Tue, 28 Jan 2020 09:02:38 -0500 Received: from mail.kernel.org ([198.145.29.99]:49016 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727196AbgA1OCh (ORCPT ); Tue, 28 Jan 2020 09:02:37 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 7974A2468A; Tue, 28 Jan 2020 14:02:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1580220156; bh=iikyDeTcnk5mV34AtN/hyjswYWiMptLtzK/jcLMufKs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=daNjCBinc6Le/JePvmTPFbrr42Wlq6/HfaNW7E3M/iTOVGLQvuBHuRcEzmBXC9J4j xlTWXwyPxZJPoho6b/HyRUE/Pik3anSFHld1NpkjhDATFNZjg9kOFILDB5hULg+Ngh +XKvUX2F16w6zdXwwadXwTv0y4OZwjxZZ2Hc2a2U= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, William Dauchy , Nicolas Dichtel , "David S. Miller" Subject: [PATCH 5.4 008/104] net, ip6_tunnel: fix namespaces move Date: Tue, 28 Jan 2020 14:59:29 +0100 Message-Id: <20200128135818.376261816@linuxfoundation.org> X-Mailer: git-send-email 2.25.0 In-Reply-To: <20200128135817.238524998@linuxfoundation.org> References: <20200128135817.238524998@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: William Dauchy [ Upstream commit 5311a69aaca30fa849c3cc46fb25f75727fb72d0 ] in the same manner as commit d0f418516022 ("net, ip_tunnel: fix namespaces move"), fix namespace moving as it was broken since commit 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnel"), but for ipv6 this time; there is no reason to keep it for ip6_tunnel. Fixes: 8d79266bc48c ("ip6_tunnel: add collect_md mode to IPv6 tunnel") Signed-off-by: William Dauchy Acked-by: Nicolas Dichtel Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/ipv6/ip6_tunnel.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c @@ -1877,10 +1877,8 @@ static int ip6_tnl_dev_init(struct net_d if (err) return err; ip6_tnl_link_config(t); - if (t->parms.collect_md) { - dev->features |= NETIF_F_NETNS_LOCAL; + if (t->parms.collect_md) netif_keep_dst(dev); - } return 0; }