diff options
| author | Ilpo Järvinen <[email protected]> | 2025-03-05 22:38:47 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2025-03-17 13:54:11 +0000 |
| commit | 041fb11d518f5d25d323766bc0f59b09bba314bc (patch) | |
| tree | 6e9b74c9bf0b650a6221065454747472622d0de8 /net/ipv4/tcp_minisocks.c | |
| parent | tcp: rework {__,}tcp_ecn_check_ce() -> tcp_data_ecn_check() (diff) | |
| download | kernel-041fb11d518f5d25d323766bc0f59b09bba314bc.tar.gz kernel-041fb11d518f5d25d323766bc0f59b09bba314bc.zip | |
tcp: helpers for ECN mode handling
Create helpers for TCP ECN modes. No functional changes.
Signed-off-by: Ilpo Järvinen <[email protected]>
Signed-off-by: Chia-Yu Chang <[email protected]>
Reviewed-by: Eric Dumazet <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_minisocks.c')
| -rw-r--r-- | net/ipv4/tcp_minisocks.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c index 3cb8f281186b..0ae24add155b 100644 --- a/net/ipv4/tcp_minisocks.c +++ b/net/ipv4/tcp_minisocks.c @@ -461,7 +461,9 @@ void tcp_openreq_init_rwin(struct request_sock *req, static void tcp_ecn_openreq_child(struct tcp_sock *tp, const struct request_sock *req) { - tp->ecn_flags = inet_rsk(req)->ecn_ok ? TCP_ECN_OK : 0; + tcp_ecn_mode_set(tp, inet_rsk(req)->ecn_ok ? + TCP_ECN_MODE_RFC3168 : + TCP_ECN_DISABLED); } void tcp_ca_openreq_child(struct sock *sk, const struct dst_entry *dst) |
