The patch titled
     gdth: Try to fix the Timer at exit problem
has been removed from the -mm tree.  Its filename was
     gdth-try-to-fix-the-timer-at-exit-problem.patch

This patch was dropped because it is obsolete

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: gdth: Try to fix the Timer at exit problem
From: Boaz Harrosh <[EMAIL PROTECTED]>

Remove_sync the timer before we delete the cards.

Testing-patches: Boaz Harrosh <[EMAIL PROTECTED]>
Cc: "Dave Milter" <[EMAIL PROTECTED]>
Cc: James Bottomley <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 drivers/scsi/gdth.c |   16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff -puN drivers/scsi/gdth.c~gdth-try-to-fix-the-timer-at-exit-problem 
drivers/scsi/gdth.c
--- a/drivers/scsi/gdth.c~gdth-try-to-fix-the-timer-at-exit-problem
+++ a/drivers/scsi/gdth.c
@@ -5100,6 +5100,9 @@ static int __init gdth_pci_probe_one(gdt
        if (error)
                goto out_free_coal_stat;
        list_add_tail(&ha->list, &gdth_instances);
+
+       scsi_scan_host(shp);
+
        return 0;
 
  out_free_coal_stat:
@@ -5135,8 +5138,6 @@ static void gdth_remove_one(gdth_ha_str 
                ha->sdev = NULL;
        }
 
-       gdth_flush(ha);
-
        if (shp->irq)
                free_irq(shp->irq,ha);
 
@@ -5234,14 +5235,15 @@ static void __exit gdth_exit(void)
 {
        gdth_ha_str *ha;
 
-       list_for_each_entry(ha, &gdth_instances, list)
-               gdth_remove_one(ha);
+       unregister_chrdev(major,"gdth");
+       unregister_reboot_notifier(&gdth_notifier);
 
 #ifdef GDTH_STATISTICS
-       del_timer(&gdth_timer);
+       del_timer_sync(&gdth_timer);
 #endif
-       unregister_chrdev(major,"gdth");
-       unregister_reboot_notifier(&gdth_notifier);
+
+       list_for_each_entry(ha, &gdth_instances, list)
+               gdth_remove_one(ha);
 }
 
 module_init(gdth_init);
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

origin.patch
gdth-try-to-fix-the-timer-at-exit-problem.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

Reply via email to