From: patchwork-bot+netdevbpf@kernel.org
To: Dmitry Safonov <dima@arista.com>
Cc: dsahern@kernel.org, edumazet@google.com, pabeni@redhat.com,
kuba@kernel.org, davem@davemloft.net,
linux-kernel@vger.kernel.org, luto@amacapital.net,
ardb@kernel.org, gilligan@arista.com, error27@gmail.com,
David.Laight@aculab.com, 0x7f454c46@gmail.com,
dcassidy@redhat.com, ebiggers@kernel.org, ebiederm@xmission.com,
fruggeri05@gmail.com, dgaillar@ciena.com,
herbert@gondor.apana.org.au, yoshfuji@linux-ipv6.org,
colona@arista.com, cdleonard@gmail.com, mnassiri@ciena.com,
noureddine@arista.com, horms@kernel.org, ftetreau@ciena.com,
netdev@vger.kernel.org, Steen.Hegelund@microchip.com
Subject: Re: [PATCH v16 net-next 01/23] net/tcp: Prepare tcp_md5sig_pool for TCP-AO
Date: Fri, 27 Oct 2023 10:00:33 +0000 [thread overview]
Message-ID: <169840083303.2931.6349303415176898109.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20231023192217.426455-2-dima@arista.com>
Hello:
This series was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Mon, 23 Oct 2023 20:21:53 +0100 you wrote:
> TCP-AO, similarly to TCP-MD5, needs to allocate tfms on a slow-path,
> which is setsockopt() and use crypto ahash requests on fast paths,
> which are RX/TX softirqs. Also, it needs a temporary/scratch buffer
> for preparing the hash.
>
> Rework tcp_md5sig_pool in order to support other hashing algorithms
> than MD5. It will make it possible to share pre-allocated crypto_ahash
> descriptors and scratch area between all TCP hash users.
>
> [...]
Here is the summary with links:
- [v16,net-next,01/23] net/tcp: Prepare tcp_md5sig_pool for TCP-AO
https://git.kernel.org/netdev/net-next/c/8c73b26315aa
- [v16,net-next,02/23] net/tcp: Add TCP-AO config and structures
https://git.kernel.org/netdev/net-next/c/c845f5f3590e
- [v16,net-next,03/23] net/tcp: Introduce TCP_AO setsockopt()s
https://git.kernel.org/netdev/net-next/c/4954f17ddefc
- [v16,net-next,04/23] net/tcp: Prevent TCP-MD5 with TCP-AO being set
https://git.kernel.org/netdev/net-next/c/0aadc73995d0
- [v16,net-next,05/23] net/tcp: Calculate TCP-AO traffic keys
https://git.kernel.org/netdev/net-next/c/7c2ffaf21bd6
- [v16,net-next,06/23] net/tcp: Add TCP-AO sign to outgoing packets
https://git.kernel.org/netdev/net-next/c/1e03d32bea8e
- [v16,net-next,07/23] net/tcp: Add tcp_parse_auth_options()
https://git.kernel.org/netdev/net-next/c/f7dca36fc54a
- [v16,net-next,08/23] net/tcp: Add AO sign to RST packets
https://git.kernel.org/netdev/net-next/c/ba7783ad45c8
- [v16,net-next,09/23] net/tcp: Add TCP-AO sign to twsk
https://git.kernel.org/netdev/net-next/c/decde2586b34
- [v16,net-next,10/23] net/tcp: Wire TCP-AO to request sockets
https://git.kernel.org/netdev/net-next/c/06b22ef29591
- [v16,net-next,11/23] net/tcp: Sign SYN-ACK segments with TCP-AO
https://git.kernel.org/netdev/net-next/c/9427c6aa3ec9
- [v16,net-next,12/23] net/tcp: Verify inbound TCP-AO signed segments
https://git.kernel.org/netdev/net-next/c/0a3a809089eb
- [v16,net-next,13/23] net/tcp: Add TCP-AO segments counters
https://git.kernel.org/netdev/net-next/c/af09a341dcf6
- [v16,net-next,14/23] net/tcp: Add TCP-AO SNE support
https://git.kernel.org/netdev/net-next/c/64382c71a557
- [v16,net-next,15/23] net/tcp: Add tcp_hash_fail() ratelimited logs
https://git.kernel.org/netdev/net-next/c/2717b5adea9e
- [v16,net-next,16/23] net/tcp: Ignore specific ICMPs for TCP-AO connections
https://git.kernel.org/netdev/net-next/c/953af8e3acb6
- [v16,net-next,17/23] net/tcp: Add option for TCP-AO to (not) hash header
https://git.kernel.org/netdev/net-next/c/7753c2f0a857
- [v16,net-next,18/23] net/tcp: Add TCP-AO getsockopt()s
https://git.kernel.org/netdev/net-next/c/ef84703a911f
- [v16,net-next,19/23] net/tcp: Allow asynchronous delete for TCP-AO keys (MKTs)
https://git.kernel.org/netdev/net-next/c/d6732b95b6fb
- [v16,net-next,20/23] net/tcp: Add static_key for TCP-AO
https://git.kernel.org/netdev/net-next/c/67fa83f7c86a
- [v16,net-next,21/23] net/tcp: Wire up l3index to TCP-AO
https://git.kernel.org/netdev/net-next/c/248411b8cb89
- [v16,net-next,22/23] net/tcp: Add TCP_AO_REPAIR
https://git.kernel.org/netdev/net-next/c/faadfaba5e01
- [v16,net-next,23/23] Documentation/tcp: Add TCP-AO documentation
https://git.kernel.org/netdev/net-next/c/7fe0e38bb669
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
next prev parent reply other threads:[~2023-10-27 10:00 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-23 19:21 [PATCH v16 net-next 00/23] net/tcp: Add TCP-AO support Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 01/23] net/tcp: Prepare tcp_md5sig_pool for TCP-AO Dmitry Safonov
2023-10-27 10:00 ` patchwork-bot+netdevbpf [this message]
2023-12-21 14:31 ` Eric Dumazet
2023-12-22 1:17 ` Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 02/23] net/tcp: Add TCP-AO config and structures Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 03/23] net/tcp: Introduce TCP_AO setsockopt()s Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 04/23] net/tcp: Prevent TCP-MD5 with TCP-AO being set Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 05/23] net/tcp: Calculate TCP-AO traffic keys Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 06/23] net/tcp: Add TCP-AO sign to outgoing packets Dmitry Safonov
2023-10-23 19:21 ` [PATCH v16 net-next 07/23] net/tcp: Add tcp_parse_auth_options() Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 08/23] net/tcp: Add AO sign to RST packets Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 09/23] net/tcp: Add TCP-AO sign to twsk Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 10/23] net/tcp: Wire TCP-AO to request sockets Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 11/23] net/tcp: Sign SYN-ACK segments with TCP-AO Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 12/23] net/tcp: Verify inbound TCP-AO signed segments Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 13/23] net/tcp: Add TCP-AO segments counters Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 14/23] net/tcp: Add TCP-AO SNE support Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 15/23] net/tcp: Add tcp_hash_fail() ratelimited logs Dmitry Safonov
2023-10-30 8:16 ` Eric Dumazet
2023-10-23 19:22 ` [PATCH v16 net-next 16/23] net/tcp: Ignore specific ICMPs for TCP-AO connections Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 17/23] net/tcp: Add option for TCP-AO to (not) hash header Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 18/23] net/tcp: Add TCP-AO getsockopt()s Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 19/23] net/tcp: Allow asynchronous delete for TCP-AO keys (MKTs) Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 20/23] net/tcp: Add static_key for TCP-AO Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 21/23] net/tcp: Wire up l3index to TCP-AO Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 22/23] net/tcp: Add TCP_AO_REPAIR Dmitry Safonov
2023-10-23 19:22 ` [PATCH v16 net-next 23/23] Documentation/tcp: Add TCP-AO documentation Dmitry Safonov
2023-11-17 13:07 ` Markus Elfring
2023-11-17 17:37 ` Dmitry Safonov
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=169840083303.2931.6349303415176898109.git-patchwork-notify@kernel.org \
--to=patchwork-bot+netdevbpf@kernel.org \
--cc=0x7f454c46@gmail.com \
--cc=David.Laight@aculab.com \
--cc=Steen.Hegelund@microchip.com \
--cc=ardb@kernel.org \
--cc=cdleonard@gmail.com \
--cc=colona@arista.com \
--cc=davem@davemloft.net \
--cc=dcassidy@redhat.com \
--cc=dgaillar@ciena.com \
--cc=dima@arista.com \
--cc=dsahern@kernel.org \
--cc=ebiederm@xmission.com \
--cc=ebiggers@kernel.org \
--cc=edumazet@google.com \
--cc=error27@gmail.com \
--cc=fruggeri05@gmail.com \
--cc=ftetreau@ciena.com \
--cc=gilligan@arista.com \
--cc=herbert@gondor.apana.org.au \
--cc=horms@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=mnassiri@ciena.com \
--cc=netdev@vger.kernel.org \
--cc=noureddine@arista.com \
--cc=pabeni@redhat.com \
--cc=yoshfuji@linux-ipv6.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;
as well as URLs for NNTP newsgroup(s).