summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorandrew hendry <andrew.hendry@gmail.com>2010-04-17 14:17:32 (GMT)
committerDavid S. Miller <davem@davemloft.net>2010-04-21 23:31:50 (GMT)
commit2cec6b014da6fb4a40ba1c6556cdf9681ed3f89e (patch)
tree812d44f58c5b0a596db203d75bfd7891d884b8b1 /net
parent761172fbf672c5784b2a0d71ca2f4389eb7a2c21 (diff)
downloadlinux-2cec6b014da6fb4a40ba1c6556cdf9681ed3f89e.tar.xz
X25 fix dead unaccepted sockets
1, An X25 program binds and listens 2, calls arrive waiting to be accepted 3, Program exits without accepting 4, Sockets time out but don't get correctly cleaned up 5, cat /proc/net/x25/socket shows the dead sockets with bad inode fields. This line borrowed from AX25 sets the dying socket so the timers clean up later. Signed-off-by: Andrew Hendry <andrew.hendry@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/x25/af_x25.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/x25/af_x25.c b/net/x25/af_x25.c
index cbddd0c..36e84e1 100644
--- a/net/x25/af_x25.c
+++ b/net/x25/af_x25.c
@@ -402,6 +402,7 @@ static void __x25_destroy_socket(struct sock *sk)
/*
* Queue the unaccepted socket for death
*/
+ skb->sk->sk_state = TCP_LISTEN;
sock_set_flag(skb->sk, SOCK_DEAD);
x25_start_heartbeat(skb->sk);
x25_sk(skb->sk)->state = X25_STATE_0;