mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
[SCSI] mpt2sas: Removed redundant calling of _scsih_probe_devices() from _scsih_probe
Removed redundant calling of _scsih_probe_devices() from _scsih_probe as it is getting called from _scsih_scan_finished. Also moved the function scsi_scan_host(shost) to get called after the volumes on warp drive are reported to the OS. Otherwise by the time the (ioc->hide_drives) flags is set, the volumes on warp drive are reported to the OS already. Also modified the initialization of reply queues only in case of driver load time in the function _base_make_ioc_operational(). Signed-off-by: Nagalakshmi Nandigama <nagalakshmi.nandigama@lsi.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
dddaaf793d
commit
2cb6fc8c01
2 changed files with 8 additions and 15 deletions
|
@ -8039,7 +8039,6 @@ _scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|||
goto out_attach_fail;
|
||||
}
|
||||
|
||||
scsi_scan_host(shost);
|
||||
if (ioc->is_warpdrive) {
|
||||
if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_EXPOSE_ALL_DISKS)
|
||||
ioc->hide_drives = 0;
|
||||
|
@ -8053,8 +8052,8 @@ _scsih_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|||
}
|
||||
} else
|
||||
ioc->hide_drives = 0;
|
||||
scsi_scan_host(shost);
|
||||
|
||||
_scsih_probe_devices(ioc);
|
||||
return 0;
|
||||
|
||||
out_attach_fail:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue