]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ax25: Quick fix for making sure unaccepted sockets get destroyed.
authorDavid S. Miller <davem@davemloft.net>
Mon, 6 Oct 2008 19:53:50 +0000 (12:53 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 6 Oct 2008 19:53:50 +0000 (12:53 -0700)
Since we reverted 30902dc3cb0ea1cfc7ac2b17bcf478ff98420d74 ("ax25: Fix
std timer socket destroy handling.") we have to put some kind of fix
in to cure the issue whereby unaccepted connections do not get destroyed.

The approach used here is from Tihomir Heidelberg - 9a4gl

Signed-off-by: David S. Miller <davem@davemloft.net>
net/ax25/af_ax25.c

index 01c83e2a4c196f813122158af5aa5bf5ea13cbd0..28c71574a781e6b0600f453275e50bf8911dcca9 100644 (file)
@@ -317,6 +317,9 @@ void ax25_destroy_socket(ax25_cb *ax25)
                                /* Queue the unaccepted socket for death */
                                sock_orphan(skb->sk);
 
+                               /* 9A4GL: hack to release unaccepted sockets */
+                               skb->sk->sk_state = TCP_LISTEN;
+
                                ax25_start_heartbeat(sax25);
                                sax25->state = AX25_STATE_0;
                        }