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 D885E19F40B for ; Wed, 6 May 2026 00:49:05 +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=1778028545; cv=none; b=iVqH4wJD/GqEXvI/XvKfrDN3b8dL2E5ACyBd0ydPRcgcvpTDNM1vY4nDiE9pkJtoi+5qJHZvCblhZ2gtjT4qHWw/FbsdjVM0VSstnzt9ByXnn/gEVHjw99yOOTD4KdSe5KzclSg5OKrnjndVky3G/rRGOBgcsmeq/zzewa2MpHQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778028545; c=relaxed/simple; bh=ca62F4uGkdzsX/Jw5lr5LSYquoMOT+qVDd37fpoT8q8=; h=Date:From:To:Cc:Subject:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=D5StKvzKqTwEiwyXibeC483mUtyfwuebS+TX92f09zmJQMuT/1MIukrF2Caq8Al8QE7aT6B9jcySJjYCwWoyZgXki9mUegEpk4bLx1tcJlDHfFpwcgRAYdFTh2/IstIQ3l97YXuUWqygD1tWfVptqawKsSTl3fy9PK8TW8Lsnhg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=PYgb3l+Y; 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="PYgb3l+Y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1B56EC2BCB4; Wed, 6 May 2026 00:49:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1778028545; bh=ca62F4uGkdzsX/Jw5lr5LSYquoMOT+qVDd37fpoT8q8=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=PYgb3l+YflHvn4hZqYa8w8hTS0dTMcOnqbMxe7S/EWLjDKakRONrLniqglC65cdV0 hKUKxPGYPcAjTtdXYMxLGzZiV96R1SzP7tdnRQrWadDCEBG2BxKQ+yxJ6IY147Bb7j khf6qfVZZfQ1DN045FVjfCaMDaa73UgIZGTBuSFegndjqmVuRhV+AElkM4UM+51aAl ARqKNZXd8wShhwhV852CcgvDK/zqNVrSNdl6QVc86+pacOChh2u1oQJsuRh9GHjMWr +GjN3v5A2AeE2Dr41zqRtxUmgJMW0DJzQ3guF+ehTTmThhzhCqo14WRrbT5+FqF0KO oZEWUF9aw0NCQ== Date: Tue, 5 May 2026 17:49:04 -0700 From: Jakub Kicinski To: Kuniyuki Iwashima Cc: "David S . Miller" , Eric Dumazet , Paolo Abeni , Andrew Lunn , Simon Horman , Kuniyuki Iwashima , netdev@vger.kernel.org Subject: Re: [PATCH v1 net-next 00/15] udp_tunnel: Speed up UDP tunnel device destruction (Part I) Message-ID: <20260505174904.52b20741@kernel.org> In-Reply-To: <20260502031401.3557229-1-kuniyu@google.com> References: <20260502031401.3557229-1-kuniyu@google.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 2 May 2026 03:12:53 +0000 Kuniyuki Iwashima wrote: > Kuniyuki Iwashima (15): > udp_tunnel: Pass struct sock to udp_tunnel_sock_release(). > udp_tunnel: Pass struct sock to setup_udp_tunnel_sock(). > udp_tunnel: Pass struct sock to udp_tunnel6_dst_lookup(). > udp_tunnel: Pass struct sock to udp_tunnel_{push,drop}_rx_port(). > udp_tunnel: Pass struct sock to udp_tunnel_notify_{add,del}_rx_port(). > vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive(). > vxlan: Store struct sock in struct vxlan_sock. > vxlan: Free vxlan_sock with kfree_rcu(). > geneve: Store struct sock in struct geneve_sock. > bareudp: Store struct sock in struct bareudp_dev. > fou: Store struct sock in struct fou. > amt: Store struct sock in struct amt_dev. > pfcp: Store struct sock in struct pfcp_dev. > tipc: Store struct sock in struct udp_bearer. > udp_tunnel: Remove synchronize_rcu() in udp_tunnel_sock_release(). Excellent job splitting this into patches, pleasure to read!