The patch titled
ehea: Fixed missing tasklet_kill() call
has been added to the -mm tree. Its filename is
ehea-fixed-missing-tasklet_kill-call.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: ehea: Fixed missing tasklet_kill() call
From: Thomas Klein <[EMAIL PROTECTED]>
NEQ-Tasklet wasn't killed when module is removed.
Signed-off-by: Thomas Klein <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/net/ehea/ehea_main.c | 1 +
1 files changed, 1 insertion(+)
diff -puN drivers/net/ehea/ehea_main.c~ehea-fixed-missing-tasklet_kill-call
drivers/net/ehea/ehea_main.c
--- a/drivers/net/ehea/ehea_main.c~ehea-fixed-missing-tasklet_kill-call
+++ a/drivers/net/ehea/ehea_main.c
@@ -2598,6 +2598,7 @@ static int __devexit ehea_remove(struct
destroy_workqueue(adapter->ehea_wq);
ibmebus_free_irq(NULL, adapter->neq->attr.ist1, adapter);
+ tasklet_kill(&adapter->neq_tasklet);
ehea_destroy_eq(adapter->neq);
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
ehea-fixed-wrong-jumbo-frames-status-query.patch
ehea-fixed-missing-tasklet_kill-call.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html