[PATCH] firewire: time out in fw_core_remove_card

From: Stefan Richter
Date: Sun Sep 14 2008 - 04:35:19 EST


This allows "modprobe -r firewire-ohci" (or card unbinding in general)
to proceed after 40 seconds even if there is a reference counting bug or
other shutdown bug in upper layers.

Signed-off-by: Stefan Richter <stefanr@xxxxxxxxxxxxxxxxx>
---
drivers/firewire/fw-card.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Index: linux/drivers/firewire/fw-card.c
===================================================================
--- linux.orig/drivers/firewire/fw-card.c
+++ linux/drivers/firewire/fw-card.c
@@ -16,6 +16,7 @@
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/

+#include <linux/bug.h>
#include <linux/completion.h>
#include <linux/crc-itu-t.h>
#include <linux/delay.h>
@@ -508,7 +509,8 @@ fw_core_remove_card(struct fw_card *card

/* Wait for all users, especially device workqueue jobs, to finish. */
fw_card_put(card);
- wait_for_completion(&card->done);
+ WARN(wait_for_completion_timeout(&card->done, 40 * HZ) == 0,
+ KBUILD_MODNAME ": forced card shutdown with references held\n");

cancel_delayed_work_sync(&card->work);
WARN_ON(!list_empty(&card->transaction_list));

--
Stefan Richter
-=====-==--- =--= -===-
http://arcgraph.de/sr/

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/