All of lore.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Kuniyuki Iwashima <kuniyu@amazon.com>
Cc: davem@davemloft.net, edumazet@google.com, kuba@kernel.org,
	pabeni@redhat.com, kuni1840@gmail.com, netdev@vger.kernel.org
Subject: Re: [PATCH v5 net-next 00/15] af_unix: Rework GC.
Date: Fri, 29 Mar 2024 15:50:33 +0000	[thread overview]
Message-ID: <171172743317.17508.11772802399675256509.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20240325202425.60930-1-kuniyu@amazon.com>

Hello:

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

On Mon, 25 Mar 2024 13:24:10 -0700 you wrote:
> When we pass a file descriptor to an AF_UNIX socket via SCM_RIGTHS,
> the underlying struct file of the inflight fd gets its refcount bumped.
> If the fd is of an AF_UNIX socket, we need to track it in case it forms
> cyclic references.
> 
> Let's say we send a fd of AF_UNIX socket A to B and vice versa and
> close() both sockets.
> 
> [...]

Here is the summary with links:
  - [v5,net-next,01/15] af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd.
    https://git.kernel.org/netdev/net-next/c/1fbfdfaa5902
  - [v5,net-next,02/15] af_unix: Allocate struct unix_edge for each inflight AF_UNIX fd.
    https://git.kernel.org/netdev/net-next/c/29b64e354029
  - [v5,net-next,03/15] af_unix: Link struct unix_edge when queuing skb.
    https://git.kernel.org/netdev/net-next/c/42f298c06b30
  - [v5,net-next,04/15] af_unix: Bulk update unix_tot_inflight/unix_inflight when queuing skb.
    https://git.kernel.org/netdev/net-next/c/22c3c0c52d32
  - [v5,net-next,05/15] af_unix: Iterate all vertices by DFS.
    https://git.kernel.org/netdev/net-next/c/6ba76fd2848e
  - [v5,net-next,06/15] af_unix: Detect Strongly Connected Components.
    https://git.kernel.org/netdev/net-next/c/3484f063172d
  - [v5,net-next,07/15] af_unix: Save listener for embryo socket.
    https://git.kernel.org/netdev/net-next/c/aed6ecef55d7
  - [v5,net-next,08/15] af_unix: Fix up unix_edge.successor for embryo socket.
    https://git.kernel.org/netdev/net-next/c/dcf70df2048d
  - [v5,net-next,09/15] af_unix: Save O(n) setup of Tarjan's algo.
    https://git.kernel.org/netdev/net-next/c/ba31b4a4e101
  - [v5,net-next,10/15] af_unix: Skip GC if no cycle exists.
    https://git.kernel.org/netdev/net-next/c/77e5593aebba
  - [v5,net-next,11/15] af_unix: Avoid Tarjan's algorithm if unnecessary.
    https://git.kernel.org/netdev/net-next/c/ad081928a8b0
  - [v5,net-next,12/15] af_unix: Assign a unique index to SCC.
    https://git.kernel.org/netdev/net-next/c/bfdb01283ee8
  - [v5,net-next,13/15] af_unix: Detect dead SCC.
    https://git.kernel.org/netdev/net-next/c/a15702d8b3aa
  - [v5,net-next,14/15] af_unix: Replace garbage collection algorithm.
    https://git.kernel.org/netdev/net-next/c/4090fa373f0e
  - [v5,net-next,15/15] selftest: af_unix: Test GC for SCM_RIGHTS.
    https://git.kernel.org/netdev/net-next/c/2aa0cff26ed5

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



      parent reply	other threads:[~2024-03-29 15:50 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-25 20:24 [PATCH v5 net-next 00/15] af_unix: Rework GC Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 01/15] af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 02/15] af_unix: Allocate struct unix_edge " Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 03/15] af_unix: Link struct unix_edge when queuing skb Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 04/15] af_unix: Bulk update unix_tot_inflight/unix_inflight " Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 05/15] af_unix: Iterate all vertices by DFS Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 06/15] af_unix: Detect Strongly Connected Components Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 07/15] af_unix: Save listener for embryo socket Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 08/15] af_unix: Fix up unix_edge.successor " Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 09/15] af_unix: Save O(n) setup of Tarjan's algo Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 10/15] af_unix: Skip GC if no cycle exists Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 11/15] af_unix: Avoid Tarjan's algorithm if unnecessary Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 12/15] af_unix: Assign a unique index to SCC Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 13/15] af_unix: Detect dead SCC Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 14/15] af_unix: Replace garbage collection algorithm Kuniyuki Iwashima
2024-03-25 20:24 ` [PATCH v5 net-next 15/15] selftest: af_unix: Test GC for SCM_RIGHTS Kuniyuki Iwashima
2024-03-29  9:55 ` [PATCH v5 net-next 00/15] af_unix: Rework GC Paolo Abeni
2024-03-29 15:50 ` 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=171172743317.17508.11772802399675256509.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=kuni1840@gmail.com \
    --cc=kuniyu@amazon.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.