arcmsr: call scsi_scan_host at the end of host initialization

Call scsi_scan_host at the end of host initialization and fix and error path
to free allocated resource.

Signed-off-by: Ching Huang <ching2048@areca.com.tw>
Reviewed-by: Tomas Henzl <thenzl@redhat.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Ching Huang 2014-08-19 15:28:36 +08:00 committed by Christoph Hellwig
parent 5b37479ade
commit b4eb6ae907
1 changed files with 9 additions and 5 deletions

View File

@ -112,6 +112,7 @@ static void arcmsr_hbaD_message_isr(struct AdapterControlBlock *acb);
static void arcmsr_hardware_reset(struct AdapterControlBlock *acb); static void arcmsr_hardware_reset(struct AdapterControlBlock *acb);
static const char *arcmsr_info(struct Scsi_Host *); static const char *arcmsr_info(struct Scsi_Host *);
static irqreturn_t arcmsr_interrupt(struct AdapterControlBlock *acb); static irqreturn_t arcmsr_interrupt(struct AdapterControlBlock *acb);
static void arcmsr_free_irq(struct pci_dev *, struct AdapterControlBlock *);
static int arcmsr_adjust_disk_queue_depth(struct scsi_device *sdev, static int arcmsr_adjust_disk_queue_depth(struct scsi_device *sdev,
int queue_depth, int reason) int queue_depth, int reason)
{ {
@ -755,12 +756,11 @@ static int arcmsr_probe(struct pci_dev *pdev, const struct pci_device_id *id)
} }
error = scsi_add_host(host, &pdev->dev); error = scsi_add_host(host, &pdev->dev);
if(error){ if(error){
goto RAID_controller_stop; goto free_ccb_pool;
} }
if (arcmsr_request_irq(pdev, acb) == FAILED) if (arcmsr_request_irq(pdev, acb) == FAILED)
goto scsi_host_remove; goto scsi_host_remove;
arcmsr_iop_init(acb); arcmsr_iop_init(acb);
scsi_scan_host(host);
INIT_WORK(&acb->arcmsr_do_message_isr_bh, arcmsr_message_isr_bh_fn); INIT_WORK(&acb->arcmsr_do_message_isr_bh, arcmsr_message_isr_bh_fn);
atomic_set(&acb->rq_map_token, 16); atomic_set(&acb->rq_map_token, 16);
atomic_set(&acb->ante_token_value, 16); atomic_set(&acb->ante_token_value, 16);
@ -772,13 +772,17 @@ static int arcmsr_probe(struct pci_dev *pdev, const struct pci_device_id *id)
add_timer(&acb->eternal_timer); add_timer(&acb->eternal_timer);
if(arcmsr_alloc_sysfs_attr(acb)) if(arcmsr_alloc_sysfs_attr(acb))
goto out_free_sysfs; goto out_free_sysfs;
scsi_scan_host(host);
return 0; return 0;
out_free_sysfs: out_free_sysfs:
scsi_host_remove: del_timer_sync(&acb->eternal_timer);
scsi_remove_host(host); flush_work(&acb->arcmsr_do_message_isr_bh);
RAID_controller_stop:
arcmsr_stop_adapter_bgrb(acb); arcmsr_stop_adapter_bgrb(acb);
arcmsr_flush_adapter_cache(acb); arcmsr_flush_adapter_cache(acb);
arcmsr_free_irq(pdev, acb);
scsi_host_remove:
scsi_remove_host(host);
free_ccb_pool:
arcmsr_free_ccb_pool(acb); arcmsr_free_ccb_pool(acb);
free_hbb_mu: free_hbb_mu:
arcmsr_free_mu(acb); arcmsr_free_mu(acb);