diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-08-20 19:05:14 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-08-25 12:00:27 -0400 |
commit | 8a2d9ed3210464d22fccb9834970629c1c36fa36 (patch) | |
tree | 20c8f95275658d53a38b608412bbcdd485400c7a /drivers/firewire | |
parent | a2ee3f9bbb0ce57102dad8928d54f59acdc4b8f7 (diff) |
firewire: fix unloading of fw-ohci while devices are attached
Fix panic in run_timer_softirq right after "modprobe -r firewire-ohci"
if a FireWire disk was attached and firewire-sbp2 loaded.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/fw-card.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/firewire/fw-card.c b/drivers/firewire/fw-card.c index 0aeab3218bb6..3e9719948a8e 100644 --- a/drivers/firewire/fw-card.c +++ b/drivers/firewire/fw-card.c | |||
@@ -510,9 +510,11 @@ fw_core_remove_card(struct fw_card *card) | |||
510 | /* Set up the dummy driver. */ | 510 | /* Set up the dummy driver. */ |
511 | card->driver = &dummy_driver; | 511 | card->driver = &dummy_driver; |
512 | 512 | ||
513 | fw_flush_transactions(card); | ||
514 | |||
515 | fw_destroy_nodes(card); | 513 | fw_destroy_nodes(card); |
514 | flush_scheduled_work(); | ||
515 | |||
516 | fw_flush_transactions(card); | ||
517 | del_timer_sync(&card->flush_timer); | ||
516 | 518 | ||
517 | fw_card_put(card); | 519 | fw_card_put(card); |
518 | } | 520 | } |