diff options
| author | Eric Dumazet <[email protected]> | 2025-06-26 15:30:17 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2025-06-27 22:34:19 +0000 |
| commit | cf56a98202970adf298df5caaa225ed68350e9ab (patch) | |
| tree | 740d72c61f2bfa5a1e6a2e0a3982d2beb906a852 /net/ipv4/tcp_timer.c | |
| parent | tcp: remove rtx_syn_ack field (diff) | |
| download | kernel-cf56a98202970adf298df5caaa225ed68350e9ab.tar.gz kernel-cf56a98202970adf298df5caaa225ed68350e9ab.zip | |
tcp: remove inet_rtx_syn_ack()
inet_rtx_syn_ack() is a simple wrapper around tcp_rtx_synack(),
if we move req->num_retrans update.
Signed-off-by: Eric Dumazet <[email protected]>
Reviewed-by: Neal Cardwell <[email protected]>
Reviewed-by: Kuniyuki Iwashima <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
Diffstat (limited to 'net/ipv4/tcp_timer.c')
| -rw-r--r-- | net/ipv4/tcp_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c index bb37e24b97a7..a207877270fb 100644 --- a/net/ipv4/tcp_timer.c +++ b/net/ipv4/tcp_timer.c @@ -478,7 +478,7 @@ static void tcp_fastopen_synack_timer(struct sock *sk, struct request_sock *req) * regular retransmit because if the child socket has been accepted * it's not good to give up too easily. */ - inet_rtx_syn_ack(sk, req); + tcp_rtx_synack(sk, req); req->num_timeout++; tcp_update_rto_stats(sk); if (!tp->retrans_stamp) |
