public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Matthieu Baerts <matthieu.baerts@tessares.net>
Cc: mptcp@lists.linux.dev, martineau@kernel.org, davem@davemloft.net,
	edumazet@google.com, kuba@kernel.org, pabeni@redhat.com,
	dsahern@kernel.org, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org, kuniyu@amazon.com
Subject: Re: [PATCH net-next 00/14] mptcp: get rid of msk->subflow
Date: Mon, 14 Aug 2023 06:10:23 +0000	[thread overview]
Message-ID: <169199342373.13316.7611325761631728090.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20230811-upstream-net-next-20230811-mptcp-get-rid-of-msk-subflow-v1-0-36183269ade8@tessares.net>

Hello:

This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:

On Fri, 11 Aug 2023 17:57:13 +0200 you wrote:
> The MPTCP protocol maintains an additional struct socket per connection,
> mainly to be able to easily use tcp-level struct socket operations.
> 
> This leads to several side effects, beyond the quite unfortunate /
> confusing 'subflow' field name:
> 
> - active and passive sockets behaviour is inconsistent: only active ones
>   have a not NULL msk->subflow, leading to different error handling and
>   different error code returned to the user-space in several places.
> 
> [...]

Here is the summary with links:
  - [net-next,01/14] mptcp: avoid unneeded mptcp_token_destroy() calls
    https://git.kernel.org/netdev/net-next/c/131a627751e3
  - [net-next,02/14] mptcp: avoid additional __inet_stream_connect() call
    https://git.kernel.org/netdev/net-next/c/ccae357c1c6a
  - [net-next,03/14] mptcp: avoid subflow socket usage in mptcp_get_port()
    https://git.kernel.org/netdev/net-next/c/cfb63e50d319
  - [net-next,04/14] net: factor out inet{,6}_bind_sk helpers
    https://git.kernel.org/netdev/net-next/c/e6d360ff87f0
  - [net-next,05/14] mptcp: mptcp: avoid additional indirection in mptcp_bind()
    https://git.kernel.org/netdev/net-next/c/8cf2ebdc0078
  - [net-next,06/14] net: factor out __inet_listen_sk() helper
    https://git.kernel.org/netdev/net-next/c/71a9a874cd6b
  - [net-next,07/14] mptcp: avoid additional indirection in mptcp_listen()
    https://git.kernel.org/netdev/net-next/c/40f56d0c7043
  - [net-next,08/14] mptcp: avoid additional indirection in mptcp_poll()
    https://git.kernel.org/netdev/net-next/c/5426a4ef6455
  - [net-next,09/14] mptcp: avoid unneeded indirection in mptcp_stream_accept()
    https://git.kernel.org/netdev/net-next/c/1f6610b92ac3
  - [net-next,10/14] mptcp: avoid additional indirection in sockopt
    https://git.kernel.org/netdev/net-next/c/f0bc514bd5c1
  - [net-next,11/14] mptcp: avoid ssock usage in mptcp_pm_nl_create_listen_socket()
    https://git.kernel.org/netdev/net-next/c/3aa362494170
  - [net-next,12/14] mptcp: change the mpc check helper to return a sk
    https://git.kernel.org/netdev/net-next/c/3f326a821b99
  - [net-next,13/14] mptcp: get rid of msk->subflow
    https://git.kernel.org/netdev/net-next/c/39880bd808ad
  - [net-next,14/14] mptcp: Remove unnecessary test for __mptcp_init_sock()
    https://git.kernel.org/netdev/net-next/c/e263691773cd

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



      parent reply	other threads:[~2023-08-14  6:12 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-11 15:57 [PATCH net-next 00/14] mptcp: get rid of msk->subflow Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 01/14] mptcp: avoid unneeded mptcp_token_destroy() calls Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 02/14] mptcp: avoid additional __inet_stream_connect() call Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 03/14] mptcp: avoid subflow socket usage in mptcp_get_port() Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 04/14] net: factor out inet{,6}_bind_sk helpers Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 05/14] mptcp: mptcp: avoid additional indirection in mptcp_bind() Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 06/14] net: factor out __inet_listen_sk() helper Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 07/14] mptcp: avoid additional indirection in mptcp_listen() Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 08/14] mptcp: avoid additional indirection in mptcp_poll() Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 09/14] mptcp: avoid unneeded indirection in mptcp_stream_accept() Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 10/14] mptcp: avoid additional indirection in sockopt Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 11/14] mptcp: avoid ssock usage in mptcp_pm_nl_create_listen_socket() Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 12/14] mptcp: change the mpc check helper to return a sk Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 13/14] mptcp: get rid of msk->subflow Matthieu Baerts
2023-08-11 15:57 ` [PATCH net-next 14/14] mptcp: Remove unnecessary test for __mptcp_init_sock() Matthieu Baerts
2023-08-14  6:10 ` 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=169199342373.13316.7611325761631728090.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=davem@davemloft.net \
    --cc=dsahern@kernel.org \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=kuniyu@amazon.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martineau@kernel.org \
    --cc=matthieu.baerts@tessares.net \
    --cc=mptcp@lists.linux.dev \
    --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