mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
SCSI fixes on 20210520
8 small fixes, all in drivers. Signed-off-by: James E.J. Bottomley <jejb@linux.ibm.com> -----BEGIN PGP SIGNATURE----- iJwEABMIAEQWIQTnYEDbdso9F2cI+arnQslM7pishQUCYKbXoCYcamFtZXMuYm90 dG9tbGV5QGhhbnNlbnBhcnRuZXJzaGlwLmNvbQAKCRDnQslM7pishUpRAQDBm6al eIw0PTxDE9YrlbjkjBAkbiV88D9/v69NlIpmdQD/fx0+6WK4CexzRoj+tiW5XaCz 3L2zPdTGrNVDwfqHV+s= =GAee -----END PGP SIGNATURE----- Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi Pull SCSI fixes from James Bottomley: "Eight small fixes, all in drivers" * tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: scsi: pm80xx: Fix drives missing during rmmod/insmod loop scsi: qla2xxx: Fix error return code in qla82xx_write_flash_dword() scsi: qedf: Add pointer checks in qedf_update_link_speed() scsi: ufs: core: Increase the usable queue depth scsi: BusLogic: Fix 64-bit system enumeration error for Buslogic scsi: ufs: ufs-mediatek: Fix power down spec violation
This commit is contained in:
commit
a0d8b0eda3
@ -2926,11 +2926,11 @@ static int blogic_qcmd_lck(struct scsi_cmnd *command,
|
||||
ccb->opcode = BLOGIC_INITIATOR_CCB_SG;
|
||||
ccb->datalen = count * sizeof(struct blogic_sg_seg);
|
||||
if (blogic_multimaster_type(adapter))
|
||||
ccb->data = (void *)((unsigned int) ccb->dma_handle +
|
||||
ccb->data = (unsigned int) ccb->dma_handle +
|
||||
((unsigned long) &ccb->sglist -
|
||||
(unsigned long) ccb));
|
||||
(unsigned long) ccb);
|
||||
else
|
||||
ccb->data = ccb->sglist;
|
||||
ccb->data = virt_to_32bit_virt(ccb->sglist);
|
||||
|
||||
scsi_for_each_sg(command, sg, count, i) {
|
||||
ccb->sglist[i].segbytes = sg_dma_len(sg);
|
||||
|
@ -806,7 +806,7 @@ struct blogic_ccb {
|
||||
unsigned char cdblen; /* Byte 2 */
|
||||
unsigned char sense_datalen; /* Byte 3 */
|
||||
u32 datalen; /* Bytes 4-7 */
|
||||
void *data; /* Bytes 8-11 */
|
||||
u32 data; /* Bytes 8-11 */
|
||||
unsigned char:8; /* Byte 12 */
|
||||
unsigned char:8; /* Byte 13 */
|
||||
enum blogic_adapter_status adapter_status; /* Byte 14 */
|
||||
|
@ -3765,11 +3765,13 @@ static int mpi_hw_event(struct pm8001_hba_info *pm8001_ha, void *piomb)
|
||||
case HW_EVENT_PHY_START_STATUS:
|
||||
pm8001_dbg(pm8001_ha, MSG, "HW_EVENT_PHY_START_STATUS status = %x\n",
|
||||
status);
|
||||
if (status == 0) {
|
||||
if (status == 0)
|
||||
phy->phy_state = 1;
|
||||
if (pm8001_ha->flags == PM8001F_RUN_TIME &&
|
||||
phy->enable_completion != NULL)
|
||||
complete(phy->enable_completion);
|
||||
|
||||
if (pm8001_ha->flags == PM8001F_RUN_TIME &&
|
||||
phy->enable_completion != NULL) {
|
||||
complete(phy->enable_completion);
|
||||
phy->enable_completion = NULL;
|
||||
}
|
||||
break;
|
||||
case HW_EVENT_SAS_PHY_UP:
|
||||
|
@ -1151,8 +1151,8 @@ static int pm8001_pci_probe(struct pci_dev *pdev,
|
||||
goto err_out_shost;
|
||||
}
|
||||
list_add_tail(&pm8001_ha->list, &hba_list);
|
||||
scsi_scan_host(pm8001_ha->shost);
|
||||
pm8001_ha->flags = PM8001F_RUN_TIME;
|
||||
scsi_scan_host(pm8001_ha->shost);
|
||||
return 0;
|
||||
|
||||
err_out_shost:
|
||||
|
@ -264,12 +264,17 @@ void pm8001_scan_start(struct Scsi_Host *shost)
|
||||
int i;
|
||||
struct pm8001_hba_info *pm8001_ha;
|
||||
struct sas_ha_struct *sha = SHOST_TO_SAS_HA(shost);
|
||||
DECLARE_COMPLETION_ONSTACK(completion);
|
||||
pm8001_ha = sha->lldd_ha;
|
||||
/* SAS_RE_INITIALIZATION not available in SPCv/ve */
|
||||
if (pm8001_ha->chip_id == chip_8001)
|
||||
PM8001_CHIP_DISP->sas_re_init_req(pm8001_ha);
|
||||
for (i = 0; i < pm8001_ha->chip->n_phy; ++i)
|
||||
for (i = 0; i < pm8001_ha->chip->n_phy; ++i) {
|
||||
pm8001_ha->phy[i].enable_completion = &completion;
|
||||
PM8001_CHIP_DISP->phy_start_req(pm8001_ha, i);
|
||||
wait_for_completion(&completion);
|
||||
msleep(300);
|
||||
}
|
||||
}
|
||||
|
||||
int pm8001_scan_finished(struct Scsi_Host *shost, unsigned long time)
|
||||
|
@ -3487,13 +3487,13 @@ static int mpi_phy_start_resp(struct pm8001_hba_info *pm8001_ha, void *piomb)
|
||||
pm8001_dbg(pm8001_ha, INIT,
|
||||
"phy start resp status:0x%x, phyid:0x%x\n",
|
||||
status, phy_id);
|
||||
if (status == 0) {
|
||||
if (status == 0)
|
||||
phy->phy_state = PHY_LINK_DOWN;
|
||||
if (pm8001_ha->flags == PM8001F_RUN_TIME &&
|
||||
phy->enable_completion != NULL) {
|
||||
complete(phy->enable_completion);
|
||||
phy->enable_completion = NULL;
|
||||
}
|
||||
|
||||
if (pm8001_ha->flags == PM8001F_RUN_TIME &&
|
||||
phy->enable_completion != NULL) {
|
||||
complete(phy->enable_completion);
|
||||
phy->enable_completion = NULL;
|
||||
}
|
||||
return 0;
|
||||
|
||||
|
@ -536,7 +536,9 @@ static void qedf_update_link_speed(struct qedf_ctx *qedf,
|
||||
if (linkmode_intersects(link->supported_caps, sup_caps))
|
||||
lport->link_supported_speeds |= FC_PORTSPEED_20GBIT;
|
||||
|
||||
fc_host_supported_speeds(lport->host) = lport->link_supported_speeds;
|
||||
if (lport->host && lport->host->shost_data)
|
||||
fc_host_supported_speeds(lport->host) =
|
||||
lport->link_supported_speeds;
|
||||
}
|
||||
|
||||
static void qedf_bw_update(void *dev)
|
||||
|
@ -1063,7 +1063,8 @@ qla82xx_write_flash_dword(struct qla_hw_data *ha, uint32_t flashaddr,
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (qla82xx_flash_set_write_enable(ha))
|
||||
ret = qla82xx_flash_set_write_enable(ha);
|
||||
if (ret < 0)
|
||||
goto done_write;
|
||||
|
||||
qla82xx_wr_32(ha, QLA82XX_ROMUSB_ROM_WDATA, data);
|
||||
|
@ -922,6 +922,7 @@ static void ufs_mtk_vreg_set_lpm(struct ufs_hba *hba, bool lpm)
|
||||
static int ufs_mtk_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
|
||||
{
|
||||
int err;
|
||||
struct arm_smccc_res res;
|
||||
|
||||
if (ufshcd_is_link_hibern8(hba)) {
|
||||
err = ufs_mtk_link_set_lpm(hba);
|
||||
@ -941,6 +942,9 @@ static int ufs_mtk_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
if (ufshcd_is_link_off(hba))
|
||||
ufs_mtk_device_reset_ctrl(0, res);
|
||||
|
||||
return 0;
|
||||
fail:
|
||||
/*
|
||||
|
@ -2842,7 +2842,7 @@ static int ufshcd_wait_for_dev_cmd(struct ufs_hba *hba,
|
||||
* ufshcd_exec_dev_cmd - API for sending device management requests
|
||||
* @hba: UFS hba
|
||||
* @cmd_type: specifies the type (NOP, Query...)
|
||||
* @timeout: time in seconds
|
||||
* @timeout: timeout in milliseconds
|
||||
*
|
||||
* NOTE: Since there is only one available tag for device management commands,
|
||||
* it is expected you hold the hba->dev_cmd.lock mutex.
|
||||
@ -2872,6 +2872,9 @@ static int ufshcd_exec_dev_cmd(struct ufs_hba *hba,
|
||||
}
|
||||
tag = req->tag;
|
||||
WARN_ON_ONCE(!ufshcd_valid_tag(hba, tag));
|
||||
/* Set the timeout such that the SCSI error handler is not activated. */
|
||||
req->timeout = msecs_to_jiffies(2 * timeout);
|
||||
blk_mq_start_request(req);
|
||||
|
||||
init_completion(&wait);
|
||||
lrbp = &hba->lrb[tag];
|
||||
|
Loading…
Reference in New Issue
Block a user