Netdev List
 help / color / mirror / Atom feed
* [PATCH 1/1]x25: fix for spinlock recurse and spinlock lockup with timer handler in x25
@ 2006-04-20  5:03 Shaun Pereira
  2006-04-28 19:00 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Shaun Pereira @ 2006-04-20  5:03 UTC (permalink / raw)
  To: Andrew Morton, netdev, x25 maintainer, linux-x25, linux-kenel

From: spereira@tusc.com.au

When the sk_timer function x25_heartbeat_expiry() is called by the kernel
in a running/terminating process, spinlock-recursion and spinlock-lockup
locks up the kernel. 
This has happened with testing on some distro's and the patch below fixed it.

Signed-off-by:Shaun Pereira <spereira@tusc.com.au>

diff -uprN -X dontdiff linux-2.6.17-rc2-vanilla/net/x25/x25_timer.c linux-2.6.17-rc2/net/x25/x25_timer.c
--- linux-2.6.17-rc2-vanilla/net/x25/x25_timer.c	2006-04-20 12:00:03.000000000 +1000
+++ linux-2.6.17-rc2/net/x25/x25_timer.c	2006-04-20 12:02:43.000000000 +1000
@@ -114,8 +114,9 @@ static void x25_heartbeat_expiry(unsigne
 			if (sock_flag(sk, SOCK_DESTROY) ||
 			    (sk->sk_state == TCP_LISTEN &&
 			     sock_flag(sk, SOCK_DEAD))) {
+				bh_unlock_sock(sk);
 				x25_destroy_socket(sk);
-				goto unlock;
+				return;
 			}
 			break;
 
@@ -128,7 +129,6 @@ static void x25_heartbeat_expiry(unsigne
 	}
 restart_heartbeat:
 	x25_start_heartbeat(sk);
-unlock:
 	bh_unlock_sock(sk);
 }
 






^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-04-28 19:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-20  5:03 [PATCH 1/1]x25: fix for spinlock recurse and spinlock lockup with timer handler in x25 Shaun Pereira
2006-04-28 19:00 ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox