public inbox for kernel-tls-handshake@lists.linux.dev
 help / color / mirror / Atom feed
[PATCH net-next v7 0/5] TLS read_sock performance scalability
 2026-03-31  2:06 UTC  (10+ messages)
` [PATCH net-next v7 1/5] tls: Abort the connection on decrypt failure
` [PATCH net-next v7 2/5] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH net-next v7 3/5] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH net-next v7 4/5] tls: Suppress spurious saved_data_ready on all receive paths
` [PATCH net-next v7 5/5] tls: Flush backlog before waiting for a new record

[PATCH net-next v6 0/6] TLS read_sock performance scalability
 2026-03-28  0:26 UTC  (11+ messages)
` [PATCH net-next v6 1/6] tls: Purge async_hold in tls_decrypt_async_wait()
` [PATCH net-next v6 2/6] tls: Abort the connection on decrypt failure
` [PATCH net-next v6 3/6] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH net-next v6 4/6] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH net-next v6 5/6] tls: Suppress spurious saved_data_ready on all receive paths
` [PATCH net-next v6 6/6] tls: Flush backlog before waiting for a new record

[PATCH net-next v11 00/15] net: introduce QUIC infrastructure and core subcomponents
 2026-03-27  1:00 UTC  (21+ messages)
` [PATCH net-next v11 01/15] net: define IPPROTO_QUIC and SOL_QUIC constants
` [PATCH net-next v11 02/15] net: build socket infrastructure for QUIC protocol
` [PATCH net-next v11 03/15] quic: provide common utilities and data structures
` [PATCH net-next v11 04/15] quic: provide family ops for address and protocol
` [PATCH net-next v11 05/15] quic: provide quic.h header files for kernel and userspace
` [PATCH net-next v11 06/15] quic: add stream management
` [PATCH net-next v11 07/15] quic: add connection id management
` [PATCH net-next v11 08/15] quic: add path management
` [PATCH net-next v11 09/15] quic: add congestion control
` [PATCH net-next v11 10/15] quic: add packet number space
` [PATCH net-next v11 11/15] quic: add crypto key derivation and installation
` [PATCH net-next v11 12/15] quic: add crypto packet encryption and decryption
` [PATCH net-next v11 13/15] quic: add timer management
` [PATCH net-next v11 14/15] quic: add packet builder base
` [PATCH net-next v11 15/15] quic: add packet parser base

[PATCH net-next v5 0/6] TLS read_sock performance scalability
 2026-03-26 10:32 UTC  (12+ messages)
` [PATCH net-next v5 1/6] tls: Purge async_hold in tls_decrypt_async_wait()
` [PATCH net-next v5 2/6] tls: Abort the connection on decrypt failure
` [PATCH net-next v5 3/6] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH net-next v5 4/6] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH net-next v5 5/6] tls: Suppress spurious saved_data_ready on all receive paths
` [PATCH net-next v5 6/6] tls: Flush backlog before waiting for a new record

[PATCH net-next v4 0/8] TLS read_sock performance scalability
 2026-03-24 22:58 UTC  (25+ messages)
` [PATCH PATCH net-next v4 1/8] tls: Factor tls_decrypt_async_drain() from recvmsg
` [PATCH PATCH net-next v4 2/8] tls: Abort the connection on decrypt failure
` [PATCH PATCH net-next v4 3/8] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH PATCH net-next v4 4/8] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH PATCH net-next v4 5/8] tls: Suppress spurious saved_data_ready on all receive paths
` [PATCH PATCH net-next v4 6/8] tls: Flush backlog before waiting for a new record
` [PATCH PATCH net-next v4 7/8] tls: Restructure tls_sw_read_sock() into submit/deliver phases
` [PATCH PATCH net-next v4 8/8] tls: Enable batch async decryption in read_sock

[PATCH v7 0/5] nvme-tcp: Support receiving KeyUpdate requests
 2026-03-20  7:53 UTC  (14+ messages)
` [PATCH v7 1/5] net/handshake: Store the key serial number on completion
` [PATCH v7 2/5] net/handshake: Define handshake_req_keyupdate
` [PATCH v7 3/5] net/handshake: Support KeyUpdate message types
` [PATCH v7 4/5] nvme-tcp: Support KeyUpdate
` [PATCH v7 5/5] nvmet-tcp: "

[PATCH v3 0/8] TLS read_sock performance scalability
 2026-03-17  7:06 UTC  (15+ messages)
` [PATCH v3 1/8] tls: Factor tls_decrypt_async_drain() from recvmsg
` [PATCH v3 2/8] tls: Factor tls_rx_decrypt_record() helper
` [PATCH v3 3/8] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH v3 4/8] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH v3 5/8] tls: Suppress spurious saved_data_ready on all receive paths
` [PATCH v3 6/8] tls: Flush backlog before tls_rx_rec_wait in read_sock
` [PATCH v3 7/8] tls: Restructure tls_sw_read_sock() into submit/deliver phases
` [PATCH v3 8/8] tls: Enable batch async decryption in read_sock

[PATCH v2 0/8] TLS read_sock performance scalability
 2026-03-11 20:42 UTC  (12+ messages)
` [PATCH v2 1/8] tls: Factor tls_decrypt_async_drain() from recvmsg
` [PATCH v2 2/8] tls: Factor tls_rx_decrypt_record() helper
` [PATCH v2 3/8] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH v2 4/8] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH v2 5/8] tls: Suppress spurious saved_data_ready on all receive paths
` [PATCH v2 6/8] tls: Flush backlog before tls_rx_rec_wait in read_sock
` [PATCH v2 7/8] tls: Restructure tls_sw_read_sock() into submit/deliver phases
` [PATCH v2 8/8] tls: Enable batch async decryption in read_sock

[PATCH v1 0/6] TLS read_sock performance scalability
 2026-03-10  3:14 UTC  (10+ messages)
` [PATCH v1 1/6] tls: Fix dangling skb pointer in tls_sw_read_sock()
` [PATCH v1 2/6] tls: Factor tls_strp_msg_release() from tls_strp_msg_done()
` [PATCH v1 3/6] tls: Suppress spurious saved_data_ready during read_sock
` [PATCH v1 4/6] tls: Flush backlog before tls_rx_rec_wait in read_sock
` [PATCH v1 5/6] tls: Restructure tls_sw_read_sock() into submit/deliver phases
` [PATCH v1 6/6] tls: Enable batch async decryption in read_sock

[PATCH net-next v10 00/15] net: introduce QUIC infrastructure and core subcomponents
 2026-03-05  0:14 UTC  (34+ messages)
` [PATCH net-next v10 01/15] net: define IPPROTO_QUIC and SOL_QUIC constants
` [PATCH net-next v10 02/15] net: build socket infrastructure for QUIC protocol
` [PATCH net-next v10 03/15] quic: provide common utilities and data structures
` [PATCH net-next v10 04/15] quic: provide family ops for address and protocol
` [PATCH net-next v10 05/15] quic: provide quic.h header files for kernel and userspace
` [PATCH net-next v10 06/15] quic: add stream management
` [PATCH net-next v10 07/15] quic: add connection id management
` [PATCH net-next v10 08/15] quic: add path management
` [PATCH net-next v10 09/15] quic: add congestion control
  ` [net-next,v10,09/15] "
` [PATCH net-next v10 10/15] quic: add packet number space
` [PATCH net-next v10 11/15] quic: add crypto key derivation and installation
  ` [net-next,v10,11/15] "
` [PATCH net-next v10 12/15] quic: add crypto packet encryption and decryption
  ` [net-next,v10,12/15] "
` [PATCH net-next v10 13/15] quic: add timer management
  ` [net-next,v10,13/15] "
` [PATCH net-next v10 14/15] quic: add packet builder base
  ` [net-next,v10,14/15] "
` [PATCH net-next v10 15/15] quic: add packet parser base
  ` [net-next,v10,15/15] "

[RFC PATCH 0/4] ->read_sock with cmsg
 2026-02-28 11:09 UTC  (14+ messages)
` [RFC PATCH 1/4] net: Introduce read_sock_cmsg proto_ops for control message delivery
` [RFC PATCH 2/4] tls: Implement read_sock_cmsg for kTLS software path
` [RFC PATCH 3/4] sunrpc: Use read_sock_cmsg for svcsock TCP receives
` [RFC PATCH 4/4] sunrpc: Remove sock_recvmsg path from "

[PATCH net-next v2] net/handshake: Fixed grammar mistake
 2026-02-28  3:40 UTC  (3+ messages)

[PATCH] Documentation/networking/tls-handshake.rst: Fix of minor grammar mistake
 2026-02-26 17:44 UTC  (2+ messages)

[PATCH v2] tlshd: Send fatal alert to client when there are server config issues
 2026-02-05 20:08 UTC  (2+ messages)

[PATCH net-next v9 05/15] quic: provide quic.h header files for kernel and userspace
 2026-02-05 19:37 UTC  (3+ messages)
` [net-next,v9,05/15] "

[PATCH net-next v9 03/15] quic: provide common utilities and data structures
 2026-02-05 19:18 UTC  (4+ messages)
` [net-next,v9,03/15] "

[PATCH net-next v9 02/15] net: build socket infrastructure for QUIC protocol
 2026-02-05 19:03 UTC  (4+ messages)
` [net-next,v9,02/15] "

[PATCH net-next v9 15/15] quic: add packet parser base
 2026-02-05 19:02 UTC  (3+ messages)
` [net-next,v9,15/15] "

[PATCH net-next v9 09/15] quic: add congestion control
 2026-02-05 19:00 UTC  (3+ messages)
` [net-next,v9,09/15] "

[PATCH net-next v9 06/15] quic: add stream management
 2026-02-05 18:56 UTC  (3+ messages)
` [net-next,v9,06/15] "

[PATCH] tlshd: Send fatal alert to client when there are server config issues
 2026-02-04 20:39 UTC  (3+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox