]> git.baikalelectronics.ru Git - kernel.git/commit
tcp: clear tp->packets_out when purging write queue
authorSoheil Hassas Yeganeh <soheil@google.com>
Sun, 15 Apr 2018 00:44:46 +0000 (20:44 -0400)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Apr 2018 15:23:42 +0000 (11:23 -0400)
commit7a8449646145902a4cc3816c51d67cd3430c72e3
tree7bc9b4df0b4b6a71c89ed1d2363cbea95d816d8c
parent2f4e0e3b6b60efea4acbb8ed65864137d721fca8
tcp: clear tp->packets_out when purging write queue

Clear tp->packets_out when purging the write queue, otherwise
tcp_rearm_rto() mistakenly assumes TCP write queue is not empty.
This results in NULL pointer dereference.

Also, remove the redundant `tp->packets_out = 0` from
tcp_disconnect(), since tcp_disconnect() calls
tcp_write_queue_purge().

Fixes: d4362d4db041 (tcp: purge write queue upon RST)
Reported-by: Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
Reported-by: Sami Farin <hvtaifwkbgefbaei@gmail.com>
Tested-by: Sami Farin <hvtaifwkbgefbaei@gmail.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: Soheil Hassas Yeganeh <soheil@google.com>
Acked-by: Yuchung Cheng <ycheng@google.com>
Acked-by: Neal Cardwell <ncardwell@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp.c