diff options
author | G. Liakhovetski <gl@dsa-ac.de> | 2007-03-16 23:30:03 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-03-20 03:09:41 -0400 |
commit | 7bb1bbe615de25d955b974cb47d40fa198154bb9 (patch) | |
tree | 04b6963a9f0a186022b79e3a788133f0962c7668 /net/irda | |
parent | 2e360d81ea1fe1a7701e05cdefd3a91c11c3b13f (diff) |
[IrDA]: irttp_dup spin_lock initialisation
Without this initialization one gets
kernel BUG at kernel/rtmutex_common.h:80!
This patch should also be included in the -stable kernel.
Signed-off-by: G. Liakhovetski <gl@dsa-ac.de>
Signed-off-by: Samuel Ortiz <samuel@sortiz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/irda')
-rw-r--r-- | net/irda/irttp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/irda/irttp.c b/net/irda/irttp.c index a7486b3bddcb..da3f2bc1b6f6 100644 --- a/net/irda/irttp.c +++ b/net/irda/irttp.c | |||
@@ -1455,6 +1455,7 @@ struct tsap_cb *irttp_dup(struct tsap_cb *orig, void *instance) | |||
1455 | 1455 | ||
1456 | /* Not everything should be copied */ | 1456 | /* Not everything should be copied */ |
1457 | new->notify.instance = instance; | 1457 | new->notify.instance = instance; |
1458 | spin_lock_init(&new->lock); | ||
1458 | init_timer(&new->todo_timer); | 1459 | init_timer(&new->todo_timer); |
1459 | 1460 | ||
1460 | skb_queue_head_init(&new->rx_queue); | 1461 | skb_queue_head_init(&new->rx_queue); |