Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=61c92814dc324b541391757062ff02fbf3b08086
Commit:     61c92814dc324b541391757062ff02fbf3b08086
Parent:     c958d767dc79250583902a382275961b5da91a4d
Author:     Boaz Harrosh <[EMAIL PROTECTED]>
AuthorDate: Tue Feb 12 19:35:22 2008 +0200
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Wed Feb 13 09:32:05 2008 -0600

    [SCSI] gdth: scan for scsi devices
    
    The patch: "gdth: switch to modern scsi host registration"
    
    missed one simple fact when moving a way from scsi_module.c.
    That is to call scsi_scan_host() on the probed host.
    With this the gdth driver from 2.6.24 is again able to
    see drives and boot.
    
    Signed-off-by: Boaz Harrosh <[EMAIL PROTECTED]>
    Tested-by: Joerg Dorchain <[EMAIL PROTECTED]>
    Tested-by: Stefan Priebe <[EMAIL PROTECTED]>
    Tested-by: Jon Chelton <[EMAIL PROTECTED]>
    Cc: Stable Tree <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/gdth.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c
index c825239..7079fef 100644
--- a/drivers/scsi/gdth.c
+++ b/drivers/scsi/gdth.c
@@ -4836,6 +4836,9 @@ static int __init gdth_isa_probe_one(ulong32 isa_bios)
        if (error)
                goto out_free_coal_stat;
        list_add_tail(&ha->list, &gdth_instances);
+
+       scsi_scan_host(shp);
+
        return 0;
 
  out_free_coal_stat:
@@ -4963,6 +4966,9 @@ static int __init gdth_eisa_probe_one(ushort eisa_slot)
        if (error)
                goto out_free_coal_stat;
        list_add_tail(&ha->list, &gdth_instances);
+
+       scsi_scan_host(shp);
+
        return 0;
 
  out_free_ccb_phys:
@@ -5100,6 +5106,9 @@ static int __init gdth_pci_probe_one(gdth_pci_str 
*pcistr, int ctr)
        if (error)
                goto out_free_coal_stat;
        list_add_tail(&ha->list, &gdth_instances);
+
+       scsi_scan_host(shp);
+
        return 0;
 
  out_free_coal_stat:
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to