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=ham 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 027CFC3276C for ; Thu, 2 Jan 2020 22:18:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BDFA3227BF for ; Thu, 2 Jan 2020 22:18:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578003521; bh=NS5YAvQuPF8LGqne4QikjhrH8sI3xfzOa4RMFogxKnM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=ntVvLyxXl8j/q4ewK0mcfasxSQaLaQa0gVGxeQuFK0sstngRzwzRhF4KMHK5sc0AF PnWJ8w5nP5rlO5/NTFlgMgDjMpOJypDlvII0qSxNWKcEMOUgB6jv+9VmkzbqG2l5gU XTMIt7wPaFD+BC/9XtFDUT7ump8q1Tzjkwy/lO+8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728354AbgABWSk (ORCPT ); Thu, 2 Jan 2020 17:18:40 -0500 Received: from mail.kernel.org ([198.145.29.99]:34010 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728474AbgABWSh (ORCPT ); Thu, 2 Jan 2020 17:18: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 8D13E2253D; Thu, 2 Jan 2020 22:18:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1578003517; bh=NS5YAvQuPF8LGqne4QikjhrH8sI3xfzOa4RMFogxKnM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KU6o1NTIUac5QlhrqGhgLvvs500dnq3+rcXJiSNHunzqPtn0mTiU/LMLpVQByxoxP Dms2krH7a/Nn415CYf4TAte8n4+kjlTUeSW1M/Ym3jteZWOF1gRKYjmDCsjmZvviYL hDHJ0ePpc8xZ4N8Th/1Us5XSxrr3vl4ZwE01LX/g= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Guillaume Nault , David Ahern , Hangbin Liu , "David S. Miller" Subject: [PATCH 5.4 174/191] net/dst: do not confirm neighbor for vxlan and geneve pmtu update Date: Thu, 2 Jan 2020 23:07:36 +0100 Message-Id: <20200102215847.955146723@linuxfoundation.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20200102215829.911231638@linuxfoundation.org> References: <20200102215829.911231638@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Hangbin Liu [ Upstream commit f081042d128a0c7acbd67611def62e1b52e2d294 ] When do IPv6 tunnel PMTU update and calls __ip6_rt_update_pmtu() in the end, we should not call dst_confirm_neigh() as there is no two-way communication. So disable the neigh confirm for vxlan and geneve pmtu update. v5: No change. v4: No change. v3: Do not remove dst_confirm_neigh, but add a new bool parameter in dst_ops.update_pmtu to control whether we should do neighbor confirm. Also split the big patch to small ones for each area. v2: Remove dst_confirm_neigh in __ip6_rt_update_pmtu. Fixes: a93bf0ff4490 ("vxlan: update skb dst pmtu on tx path") Fixes: 52a589d51f10 ("geneve: update skb dst pmtu on tx path") Reviewed-by: Guillaume Nault Tested-by: Guillaume Nault Acked-by: David Ahern Signed-off-by: Hangbin Liu Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- include/net/dst.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/net/dst.h +++ b/include/net/dst.h @@ -535,7 +535,7 @@ static inline void skb_tunnel_check_pmtu u32 encap_mtu = dst_mtu(encap_dst); if (skb->len > encap_mtu - headroom) - skb_dst_update_pmtu(skb, encap_mtu - headroom); + skb_dst_update_pmtu_no_confirm(skb, encap_mtu - headroom); } #endif /* _NET_DST_H */