From: patchwork-bot+netdevbpf@kernel.org
To: David Howells <dhowells@redhat.com>
Cc: netdev@vger.kernel.org, torvalds@linux-foundation.org,
chuck.lever@oracle.com, borisp@nvidia.com,
john.fastabend@gmail.com, kuba@kernel.org, davem@davemloft.net,
edumazet@google.com, pabeni@redhat.com,
willemdebruijn.kernel@gmail.com, dsahern@kernel.org,
willy@infradead.org, axboe@kernel.dk, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH net-next v6 00/14] splice, net: Rewrite splice-to-socket, fix SPLICE_F_MORE and handle MSG_SPLICE_PAGES in AF_TLS
Date: Fri, 09 Jun 2023 03:40:24 +0000 [thread overview]
Message-ID: <168628202421.7487.4215663670045533118.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20230607181920.2294972-1-dhowells@redhat.com>
Hello:
This series was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 7 Jun 2023 19:19:06 +0100 you wrote:
> Here are patches to do the following:
>
> (1) Block MSG_SENDPAGE_* flags from leaking into ->sendmsg() from
> userspace, whilst allowing splice_to_socket() to pass them in.
>
> (2) Allow MSG_SPLICE_PAGES to be passed into tls_*_sendmsg(). Until
> support is added, it will be ignored and a splice-driven sendmsg()
> will be treated like a normal sendmsg(). TCP, UDP, AF_UNIX and
> Chelsio-TLS already handle the flag in net-next.
>
> [...]
Here is the summary with links:
- [net-next,v6,01/14] net: Block MSG_SENDPAGE_* from being passed to sendmsg() by userspace
https://git.kernel.org/netdev/net-next/c/4fe38acdac8a
- [net-next,v6,02/14] tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsg
https://git.kernel.org/netdev/net-next/c/81840b3b91aa
- [net-next,v6,03/14] splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage()
https://git.kernel.org/netdev/net-next/c/2dc334f1a63a
- [net-next,v6,04/14] splice, net: Add a splice_eof op to file-ops and socket-ops
https://git.kernel.org/netdev/net-next/c/2bfc66850952
- [net-next,v6,05/14] tls/sw: Use splice_eof() to flush
https://git.kernel.org/netdev/net-next/c/df720d288dbb
- [net-next,v6,06/14] tls/device: Use splice_eof() to flush
https://git.kernel.org/netdev/net-next/c/d4c1e80b0d1b
- [net-next,v6,07/14] ipv4, ipv6: Use splice_eof() to flush
https://git.kernel.org/netdev/net-next/c/1d7e4538a546
- [net-next,v6,08/14] chelsio/chtls: Use splice_eof() to flush
https://git.kernel.org/netdev/net-next/c/c289a1601abd
- [net-next,v6,09/14] kcm: Use splice_eof() to flush
https://git.kernel.org/netdev/net-next/c/951ace995138
- [net-next,v6,10/14] splice, net: Fix SPLICE_F_MORE signalling in splice_direct_to_actor()
https://git.kernel.org/netdev/net-next/c/219d92056ba3
- [net-next,v6,11/14] tls/sw: Support MSG_SPLICE_PAGES
https://git.kernel.org/netdev/net-next/c/fe1e81d4f73b
- [net-next,v6,12/14] tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGES
https://git.kernel.org/netdev/net-next/c/45e5be844ab6
- [net-next,v6,13/14] tls/device: Support MSG_SPLICE_PAGES
https://git.kernel.org/netdev/net-next/c/24763c9c0980
- [net-next,v6,14/14] tls/device: Convert tls_device_sendpage() to use MSG_SPLICE_PAGES
https://git.kernel.org/netdev/net-next/c/3dc8976c7ad6
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
prev parent reply other threads:[~2023-06-09 3:40 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-07 18:19 David Howells
2023-06-07 18:19 ` [PATCH net-next v6 01/14] net: Block MSG_SENDPAGE_* from being passed to sendmsg() by userspace David Howells
2023-06-07 18:19 ` [PATCH net-next v6 02/14] tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsg David Howells
2023-06-07 18:19 ` [PATCH net-next v6 03/14] splice, net: Use sendmsg(MSG_SPLICE_PAGES) rather than ->sendpage() David Howells
2023-06-07 18:19 ` [PATCH net-next v6 04/14] splice, net: Add a splice_eof op to file-ops and socket-ops David Howells
2023-06-07 18:19 ` [PATCH net-next v6 05/14] tls/sw: Use splice_eof() to flush David Howells
2023-06-07 18:19 ` [PATCH net-next v6 06/14] tls/device: " David Howells
2023-06-07 18:19 ` [PATCH net-next v6 07/14] ipv4, ipv6: " David Howells
2023-06-07 18:19 ` [PATCH net-next v6 08/14] chelsio/chtls: " David Howells
2023-06-07 18:19 ` [PATCH net-next v6 09/14] kcm: " David Howells
2023-06-07 18:19 ` [PATCH net-next v6 10/14] splice, net: Fix SPLICE_F_MORE signalling in splice_direct_to_actor() David Howells
2023-06-07 18:19 ` [PATCH net-next v6 11/14] tls/sw: Support MSG_SPLICE_PAGES David Howells
2023-06-07 18:19 ` [PATCH net-next v6 12/14] tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGES David Howells
2023-06-07 18:19 ` [PATCH net-next v6 13/14] tls/device: Support MSG_SPLICE_PAGES David Howells
2023-06-07 18:19 ` [PATCH net-next v6 14/14] tls/device: Convert tls_device_sendpage() to use MSG_SPLICE_PAGES David Howells
2023-06-09 3:40 ` 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=168628202421.7487.4215663670045533118.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=axboe@kernel.dk \
--cc=borisp@nvidia.com \
--cc=chuck.lever@oracle.com \
--cc=davem@davemloft.net \
--cc=dhowells@redhat.com \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=john.fastabend@gmail.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=torvalds@linux-foundation.org \
--cc=willemdebruijn.kernel@gmail.com \
--cc=willy@infradead.org \
/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