summaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorJason Xing <kernelxing@tencent.com>2024-05-10 20:25:01 +0800
committerJakub Kicinski <kuba@kernel.org>2024-05-13 17:33:57 -0700
commit22a32557758a7100e46dfa8f383a401125e60b16 (patch)
tree9b230ca176f3e2cf51b313f474db8403e0ea0b37 /net/ipv4
parentf6d5e2cc291fdf6f804c2754e345b41055d1aac4 (diff)
downloadlinux-22a32557758a7100e46dfa8f383a401125e60b16.tar.gz
linux-22a32557758a7100e46dfa8f383a401125e60b16.tar.bz2
linux-22a32557758a7100e46dfa8f383a401125e60b16.zip
tcp: rstreason: handle timewait cases in the receive path
There are two possible cases where TCP layer can send an RST. Since they happen in the same place, I think using one independent reason is enough to identify this special situation. Signed-off-by: Jason Xing <kernelxing@tencent.com> Link: https://lore.kernel.org/r/20240510122502.27850-5-kerneljasonxing@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/tcp_ipv4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index 108a438dc247..30ef0c8f5e92 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -2427,7 +2427,7 @@ do_time_wait:
tcp_v4_timewait_ack(sk, skb);
break;
case TCP_TW_RST:
- tcp_v4_send_reset(sk, skb, sk_rst_convert_drop_reason(drop_reason));
+ tcp_v4_send_reset(sk, skb, SK_RST_REASON_TCP_TIMEWAIT_SOCKET);
inet_twsk_deschedule_put(inet_twsk(sk));
goto discard_it;
case TCP_TW_SUCCESS:;