aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Richter <stefanr@s5r6.in-berlin.de>2010-07-22 05:56:38 -0400
committerStefan Richter <stefanr@s5r6.in-berlin.de>2010-07-27 05:04:10 -0400
commita2d39db9dec0e7e403f54c9cf98b7dbc82b4c44a (patch)
tree86e4e8447f83cefa4ae4809051fffad04b8229ef
parentc7b2a99c66e7b40d8843a70f2981e375eeedf062 (diff)
firewire: nosy: fix list corruption by NOSY_IOC_STOP
nosy_stop_snoop() would blow up the second time it was called without nosy_start_snoop() in between. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r--drivers/firewire/nosy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/nosy.c b/drivers/firewire/nosy.c
index 6470514190d5..637e51485a70 100644
--- a/drivers/firewire/nosy.c
+++ b/drivers/firewire/nosy.c
@@ -276,7 +276,7 @@ nosy_stop_snoop(struct client *client)
276 unsigned long flags; 276 unsigned long flags;
277 277
278 spin_lock_irqsave(&client->lynx->client_list_lock, flags); 278 spin_lock_irqsave(&client->lynx->client_list_lock, flags);
279 list_del(&client->link); 279 list_del_init(&client->link);
280 spin_unlock_irqrestore(&client->lynx->client_list_lock, flags); 280 spin_unlock_irqrestore(&client->lynx->client_list_lock, flags);
281} 281}
282 282