patch-2.2.4 linux/net/ipv4/tcp_timer.c
Next file: linux/net/ipv4/udp.c
Previous file: linux/net/ipv4/tcp_output.c
Back to the patch index
Back to the overall index
- Lines: 35
- Date:
Tue Mar 23 13:20:34 1999
- Orig file:
v2.2.3/linux/net/ipv4/tcp_timer.c
- Orig date:
Wed Jan 20 23:14:07 1999
diff -u --recursive --new-file v2.2.3/linux/net/ipv4/tcp_timer.c linux/net/ipv4/tcp_timer.c
@@ -5,7 +5,7 @@
*
* Implementation of the Transmission Control Protocol(TCP).
*
- * Version: $Id: tcp_timer.c,v 1.57 1999/01/20 07:20:21 davem Exp $
+ * Version: $Id: tcp_timer.c,v 1.59 1999/03/23 21:21:09 davem Exp $
*
* Authors: Ross Biro, <bir7@leland.Stanford.Edu>
* Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
@@ -403,7 +403,7 @@
for(i = chain_start; i < (chain_start + ((TCP_HTABLE_SIZE/2) >> 2)); i++) {
struct sock *sk = tcp_established_hash[i];
while(sk) {
- if(sk->keepopen) {
+ if(!atomic_read(&sk->sock_readers) && sk->keepopen) {
count += tcp_keepopen_proc(sk);
if(count == sysctl_tcp_max_ka_probes)
goto out;
@@ -445,7 +445,6 @@
tcp_reset_xmit_timer(sk, TIME_RETRANS, HZ/20);
return;
}
- lock_sock(sk);
/* Clear delay ack timer. */
tcp_clear_xmit_timer(sk, TIME_DACK);
@@ -510,8 +509,6 @@
tcp_reset_xmit_timer(sk, TIME_RETRANS, tp->rto);
tcp_write_timeout(sk);
-
- release_sock(sk);
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)