public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Kuniyuki Iwashima <kuniyu@google.com>
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
Subject: Re: [PATCH v1 net-next 00/15] udp_tunnel: Speed up UDP tunnel device destruction (Part I)
Date: Wed, 06 May 2026 01:00:26 +0000	[thread overview]
Message-ID: <177802922680.2330352.4228235075044391782.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260502031401.3557229-1-kuniyu@google.com>

Hello:

This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

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



      parent reply	other threads:[~2026-05-06  1:01 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-02  3:12 [PATCH v1 net-next 00/15] udp_tunnel: Speed up UDP tunnel device destruction (Part I) Kuniyuki Iwashima
2026-05-02  3:12 ` [PATCH v1 net-next 01/15] udp_tunnel: Pass struct sock to udp_tunnel_sock_release() Kuniyuki Iwashima
2026-05-03 18:43   ` Kuniyuki Iwashima
2026-05-02  3:12 ` [PATCH v1 net-next 02/15] udp_tunnel: Pass struct sock to setup_udp_tunnel_sock() Kuniyuki Iwashima
2026-05-02  3:12 ` [PATCH v1 net-next 03/15] udp_tunnel: Pass struct sock to udp_tunnel6_dst_lookup() Kuniyuki Iwashima
2026-05-02  3:12 ` [PATCH v1 net-next 04/15] udp_tunnel: Pass struct sock to udp_tunnel_{push,drop}_rx_port() Kuniyuki Iwashima
2026-05-02  3:12 ` [PATCH v1 net-next 05/15] udp_tunnel: Pass struct sock to udp_tunnel_notify_{add,del}_rx_port() Kuniyuki Iwashima
2026-05-02  3:12 ` [PATCH v1 net-next 06/15] vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive() Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 07/15] vxlan: Store struct sock in struct vxlan_sock Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 08/15] vxlan: Free vxlan_sock with kfree_rcu() Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 09/15] geneve: Store struct sock in struct geneve_sock Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 10/15] bareudp: Store struct sock in struct bareudp_dev Kuniyuki Iwashima
2026-05-03 18:47   ` Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 11/15] fou: Store struct sock in struct fou Kuniyuki Iwashima
2026-05-03 18:52   ` Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 12/15] amt: Store struct sock in struct amt_dev Kuniyuki Iwashima
2026-05-03 18:55   ` Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 13/15] pfcp: Store struct sock in struct pfcp_dev Kuniyuki Iwashima
2026-05-03 19:00   ` Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 14/15] tipc: Store struct sock in struct udp_bearer Kuniyuki Iwashima
2026-05-03 19:05   ` Kuniyuki Iwashima
2026-05-02  3:13 ` [PATCH v1 net-next 15/15] udp_tunnel: Remove synchronize_rcu() in udp_tunnel_sock_release() Kuniyuki Iwashima
2026-05-06  0:49 ` [PATCH v1 net-next 00/15] udp_tunnel: Speed up UDP tunnel device destruction (Part I) Jakub Kicinski
2026-05-06  1:43   ` Kuniyuki Iwashima
2026-05-06  1:00 ` patchwork-bot+netdevbpf [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=177802922680.2330352.4228235075044391782.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=horms@kernel.org \
    --cc=kuba@kernel.org \
    --cc=kuni1840@gmail.com \
    --cc=kuniyu@google.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox