linux-kselftest.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 net-next 00/15] AccECN protocol patch series
@ 2025-04-22 15:35 chia-yu.chang
  2025-04-22 15:35 ` [PATCH v5 net-next 01/15] tcp: reorganize SYN ECN code chia-yu.chang
                   ` (16 more replies)
  0 siblings, 17 replies; 40+ messages in thread
From: chia-yu.chang @ 2025-04-22 15:35 UTC (permalink / raw)
  To: horms, dsahern, kuniyu, bpf, netdev, dave.taht, pabeni, jhs, kuba,
	stephen, xiyou.wangcong, jiri, davem, edumazet, andrew+netdev,
	donald.hunter, ast, liuhangbin, shuah, linux-kselftest, ij,
	ncardwell, koen.de_schepper, g.white, ingemar.s.johansson,
	mirja.kuehlewind, cheshire, rs.ietf, Jason_Livingood, vidhi_goel
  Cc: Chia-Yu Chang

From: Chia-Yu Chang <chia-yu.chang@nokia-bell-labs.com>

Hello,

Plese find the v5:

v5 (22-Apr-2025)
- Further fix for 32-bit ARM alignment in tcp.c (Simon Horman <horms@kernel.org>)

v4 (18-Apr-2025)
- Fix 32-bit ARM assertion for alignment requirement (Simon Horman <horms@kernel.org>)

v3 (14-Apr-2025)
- Fix patch apply issue in v2 (Jakub Kicinski <kuba@kernel.org>)

v2 (18-Mar-2025)
- Add one missing patch from previous AccECN protocol preparation patch series to this patch series

The full patch series can be found in
https://github.com/L4STeam/linux-net-next/commits/upstream_l4steam/

The Accurate ECN draft can be found in
https://datatracker.ietf.org/doc/html/draft-ietf-tcpm-accurate-ecn-28

Best regards,
Chia-Yu

Chia-Yu Chang (1):
  tcp: accecn: AccECN option failure handling

Ilpo Järvinen (14):
  tcp: reorganize SYN ECN code
  tcp: fast path functions later
  tcp: AccECN core
  tcp: accecn: AccECN negotiation
  tcp: accecn: add AccECN rx byte counters
  tcp: accecn: AccECN needs to know delivered bytes
  tcp: allow embedding leftover into option padding
  tcp: sack option handling improvements
  tcp: accecn: AccECN option
  tcp: accecn: AccECN option send control
  tcp: accecn: AccECN option ceb/cep heuristic
  tcp: accecn: AccECN ACE field multi-wrap heuristic
  tcp: accecn: try to fit AccECN option with SACK
  tcp: try to avoid safer when ACKs are thinned

 include/linux/tcp.h        |  27 +-
 include/net/netns/ipv4.h   |   2 +
 include/net/tcp.h          | 198 +++++++++++--
 include/uapi/linux/tcp.h   |   7 +
 net/ipv4/syncookies.c      |   3 +
 net/ipv4/sysctl_net_ipv4.c |  19 ++
 net/ipv4/tcp.c             |  26 +-
 net/ipv4/tcp_input.c       | 591 +++++++++++++++++++++++++++++++++++--
 net/ipv4/tcp_ipv4.c        |   5 +-
 net/ipv4/tcp_minisocks.c   |  92 +++++-
 net/ipv4/tcp_output.c      | 302 +++++++++++++++++--
 net/ipv6/syncookies.c      |   1 +
 net/ipv6/tcp_ipv6.c        |   1 +
 13 files changed, 1178 insertions(+), 96 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2025-05-06 17:49 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-04-22 15:35 [PATCH v5 net-next 00/15] AccECN protocol patch series chia-yu.chang
2025-04-22 15:35 ` [PATCH v5 net-next 01/15] tcp: reorganize SYN ECN code chia-yu.chang
2025-04-22 15:35 ` [PATCH v5 net-next 02/15] tcp: fast path functions later chia-yu.chang
2025-04-22 15:35 ` [PATCH v5 net-next 03/15] tcp: AccECN core chia-yu.chang
2025-04-29 10:14   ` Paolo Abeni
2025-05-05 15:24     ` Chia-Yu Chang (Nokia)
2025-05-06 13:56       ` Chia-Yu Chang (Nokia)
2025-04-22 15:35 ` [PATCH v5 net-next 04/15] tcp: accecn: AccECN negotiation chia-yu.chang
2025-04-29 10:36   ` Paolo Abeni
2025-05-05 15:59     ` Chia-Yu Chang (Nokia)
2025-04-22 15:35 ` [PATCH v5 net-next 05/15] tcp: accecn: add AccECN rx byte counters chia-yu.chang
2025-04-29 10:45   ` Paolo Abeni
2025-04-22 15:35 ` [PATCH v5 net-next 06/15] tcp: accecn: AccECN needs to know delivered bytes chia-yu.chang
2025-04-22 15:35 ` [PATCH v5 net-next 07/15] tcp: allow embedding leftover into option padding chia-yu.chang
2025-04-29 10:57   ` Paolo Abeni
2025-05-05 23:09     ` Ilpo Järvinen
2025-05-06  8:50       ` Chia-Yu Chang (Nokia)
2025-04-22 15:35 ` [PATCH v5 net-next 08/15] tcp: sack option handling improvements chia-yu.chang
2025-04-22 15:35 ` [PATCH v5 net-next 09/15] tcp: accecn: AccECN option chia-yu.chang
2025-04-29 11:56   ` Paolo Abeni
2025-05-05 21:47     ` Chia-Yu Chang (Nokia)
2025-05-05 22:54     ` Ilpo Järvinen
2025-05-06  8:48       ` Chia-Yu Chang (Nokia)
2025-05-06 17:40         ` Ilpo Järvinen
2025-05-06 17:49       ` Ilpo Järvinen
2025-04-22 15:35 ` [PATCH v5 net-next 10/15] tcp: accecn: AccECN option send control chia-yu.chang
2025-04-29 12:10   ` Paolo Abeni
2025-05-05 21:53     ` Chia-Yu Chang (Nokia)
2025-05-05 23:26       ` Ilpo Järvinen
2025-05-06  8:53         ` Chia-Yu Chang (Nokia)
2025-04-22 15:35 ` [PATCH v5 net-next 11/15] tcp: accecn: AccECN option failure handling chia-yu.chang
2025-04-29 14:08   ` Paolo Abeni
2025-04-22 15:35 ` [PATCH v5 net-next 12/15] tcp: accecn: AccECN option ceb/cep heuristic chia-yu.chang
2025-04-22 15:36 ` [PATCH v5 net-next 13/15] tcp: accecn: AccECN ACE field multi-wrap heuristic chia-yu.chang
2025-04-22 15:36 ` [PATCH v5 net-next 14/15] tcp: accecn: try to fit AccECN option with SACK chia-yu.chang
2025-04-22 15:36 ` [PATCH v5 net-next 15/15] tcp: try to avoid safer when ACKs are thinned chia-yu.chang
2025-04-29 14:11   ` Paolo Abeni
2025-04-24 17:36 ` [PATCH v5 net-next 00/15] AccECN protocol patch series Simon Horman
2025-04-26  0:32 ` Jakub Kicinski
2025-04-29  2:33   ` Neal Cardwell

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).