From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 51E4DC2FF for ; Wed, 6 May 2026 01:01:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778029277; cv=none; b=snWM+VmWBjMauPHES5sxaci5+6n15CDUEGKQYNsO85sYp++FVFAbIpmMx/pOcA50j6BTkGP3rG4JlKlcw+6aN4pyWC6Awji5FLcgQXHyfPX4YAO0ansL8HXbmYBn0VT5u7PBEDyHRr+teSmpHr2jv+VuCmYX80ZfDStofJquuuM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778029277; c=relaxed/simple; bh=xAVs+yZzELYDzcohDpcCD3pqLgclVEks0P9GxssIc+E=; h=Content-Type:MIME-Version:Subject:From:Message-Id:Date:References: In-Reply-To:To:Cc; b=CkMeD48T1Xp2VFbvn3bKlZU1Ro4Pa39uJUoihBi6EGNDv7uzVbVQXBLW3IPJ6PN6Y47H4b0WRz6Rc5Zn7qd9xTclPLCRcLFWjYZsWalUbbKqO4m6Pf445FPz+YzMej6RMM8Jpm++4zXqyO1DpRNaIiCAiDm5V/OozRuxBRh6Ch4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=JOukrArX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="JOukrArX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E082EC2BCB4; Wed, 6 May 2026 01:01:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778029276; bh=xAVs+yZzELYDzcohDpcCD3pqLgclVEks0P9GxssIc+E=; h=Subject:From:Date:References:In-Reply-To:To:Cc:From; b=JOukrArX3oYu5toTrUDhC5U55Il7mxfQGx+j49A76EmytM2u+IdNRzS73HRQ30J1b sek/ULZVYUBHLCFQySz65+9o8o7x0Gf+kAwN4rmL07yHW3glVqTlmrmThQtLRll6ex yRXXWwCWBvx3ZbQxuKmWELeQoCJTEef8DquSHKafBAFvUARzBXPNvTnWKj6lxi+YAC 1bG9RS6XyXFuGmjXC0suSeoRuzM7E/IxyiDIHCiC/EBe5zocPXTEPxNUg/tUA5QB5X bbo0EsUjoHQYRmmmfFKMXO+uuJC+cUsKN17NC7ge8dnH5CbRayVp0mDUqPcvmuPKnG bg+8mYZuhSEjQ== Received: from [10.30.226.235] (localhost [IPv6:::1]) by aws-us-west-2-korg-oddjob-rhel9-1.codeaurora.org (Postfix) with ESMTP id 3FDE13930780; Wed, 6 May 2026 01:00:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [PATCH v1 net-next 00/15] udp_tunnel: Speed up UDP tunnel device destruction (Part I) From: patchwork-bot+netdevbpf@kernel.org Message-Id: <177802922680.2330352.4228235075044391782.git-patchwork-notify@kernel.org> Date: Wed, 06 May 2026 01:00:26 +0000 References: <20260502031401.3557229-1-kuniyu@google.com> In-Reply-To: <20260502031401.3557229-1-kuniyu@google.com> To: Kuniyuki Iwashima Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, andrew+netdev@lunn.ch, horms@kernel.org, kuni1840@gmail.com, netdev@vger.kernel.org Hello: This series was applied to netdev/net-next.git (main) by Jakub Kicinski : On Sat, 2 May 2026 03:12:53 +0000 you wrote: > Most of the UDP tunnel devices call synchronize_rcu() twice > during destruction, for example, vxlan has > > 1) synchronize_rcu() in udp_tunnel_sock_release() > > 2) synchronize_net() in vxlan_sock_release() > > [...] Here is the summary with links: - [v1,net-next,01/15] udp_tunnel: Pass struct sock to udp_tunnel_sock_release(). https://git.kernel.org/netdev/net-next/c/944bfc1b1c6f - [v1,net-next,02/15] udp_tunnel: Pass struct sock to setup_udp_tunnel_sock(). https://git.kernel.org/netdev/net-next/c/2cba193628fe - [v1,net-next,03/15] udp_tunnel: Pass struct sock to udp_tunnel6_dst_lookup(). https://git.kernel.org/netdev/net-next/c/9333d5ff28bd - [v1,net-next,04/15] udp_tunnel: Pass struct sock to udp_tunnel_{push,drop}_rx_port(). https://git.kernel.org/netdev/net-next/c/8d0012ce1b41 - [v1,net-next,05/15] udp_tunnel: Pass struct sock to udp_tunnel_notify_{add,del}_rx_port(). https://git.kernel.org/netdev/net-next/c/af3f903fbb70 - [v1,net-next,06/15] vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive(). https://git.kernel.org/netdev/net-next/c/30a45c0bffdd - [v1,net-next,07/15] vxlan: Store struct sock in struct vxlan_sock. https://git.kernel.org/netdev/net-next/c/027bffa1ad19 - [v1,net-next,08/15] vxlan: Free vxlan_sock with kfree_rcu(). https://git.kernel.org/netdev/net-next/c/4f71dd1b421d - [v1,net-next,09/15] geneve: Store struct sock in struct geneve_sock. https://git.kernel.org/netdev/net-next/c/82720c6196dc - [v1,net-next,10/15] bareudp: Store struct sock in struct bareudp_dev. https://git.kernel.org/netdev/net-next/c/bc773b15eb19 - [v1,net-next,11/15] fou: Store struct sock in struct fou. https://git.kernel.org/netdev/net-next/c/173a79f6966a - [v1,net-next,12/15] amt: Store struct sock in struct amt_dev. https://git.kernel.org/netdev/net-next/c/65c6e06d5aba - [v1,net-next,13/15] pfcp: Store struct sock in struct pfcp_dev. https://git.kernel.org/netdev/net-next/c/fe57adbe0dac - [v1,net-next,14/15] tipc: Store struct sock in struct udp_bearer. https://git.kernel.org/netdev/net-next/c/1ae552c7b665 - [v1,net-next,15/15] udp_tunnel: Remove synchronize_rcu() in udp_tunnel_sock_release(). https://git.kernel.org/netdev/net-next/c/72d3b9a4c2b1 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html