mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-16 19:47:55 +00:00
SCSI fixes on 20191025
Nine changes, eight to drivers (qla2xxx, hpsa, lpfc, alua, ch, 53c710[x2], target) and one core change that tries to close a race between sysfs delete and module removal. Signed-off-by: James E.J. Bottomley <jejb@linux.ibm.com> -----BEGIN PGP SIGNATURE----- iJwEABMIAEQWIQTnYEDbdso9F2cI+arnQslM7pishQUCXbN1gSYcamFtZXMuYm90 dG9tbGV5QGhhbnNlbnBhcnRuZXJzaGlwLmNvbQAKCRDnQslM7pishWUzAP4tB9Z+ X5zfnMLmeAtSCnVwIgFX3/GVSFfzEmi+3VxfBQEA3nfs5AAJCPsaTk9z+jLtAKPk 6uYoHwsyTHal19Ojt9g= =IOPn -----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: "Nine changes, eight to drivers (qla2xxx, hpsa, lpfc, alua, ch, 53c710[x2], target) and one core change that tries to close a race between sysfs delete and module removal" * tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: scsi: lpfc: remove left-over BUILD_NVME defines scsi: core: try to get module before removing device scsi: hpsa: add missing hunks in reset-patch scsi: target: core: Do not overwrite CDB byte 1 scsi: ch: Make it possible to open a ch device multiple times again scsi: fix kconfig dependency warning related to 53C700_LE_ON_BE scsi: sni_53c710: fix compilation error scsi: scsi_dh_alua: handle RTPG sense code correctly during state transitions scsi: qla2xxx: fix a potential NULL pointer dereference
This commit is contained in:
commit
1c4e395cf7
10 changed files with 36 additions and 36 deletions
|
@ -898,7 +898,7 @@ config SCSI_SNI_53C710
|
||||||
|
|
||||||
config 53C700_LE_ON_BE
|
config 53C700_LE_ON_BE
|
||||||
bool
|
bool
|
||||||
depends on SCSI_LASI700
|
depends on SCSI_LASI700 || SCSI_SNI_53C710
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config SCSI_STEX
|
config SCSI_STEX
|
||||||
|
|
|
@ -579,7 +579,6 @@ ch_release(struct inode *inode, struct file *file)
|
||||||
scsi_changer *ch = file->private_data;
|
scsi_changer *ch = file->private_data;
|
||||||
|
|
||||||
scsi_device_put(ch->device);
|
scsi_device_put(ch->device);
|
||||||
ch->device = NULL;
|
|
||||||
file->private_data = NULL;
|
file->private_data = NULL;
|
||||||
kref_put(&ch->ref, ch_destroy);
|
kref_put(&ch->ref, ch_destroy);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -512,6 +512,7 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_port_group *pg)
|
||||||
unsigned int tpg_desc_tbl_off;
|
unsigned int tpg_desc_tbl_off;
|
||||||
unsigned char orig_transition_tmo;
|
unsigned char orig_transition_tmo;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
bool transitioning_sense = false;
|
||||||
|
|
||||||
if (!pg->expiry) {
|
if (!pg->expiry) {
|
||||||
unsigned long transition_tmo = ALUA_FAILOVER_TIMEOUT * HZ;
|
unsigned long transition_tmo = ALUA_FAILOVER_TIMEOUT * HZ;
|
||||||
|
@ -572,13 +573,19 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_port_group *pg)
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* Retry on ALUA state transition or if any
|
* If the array returns with 'ALUA state transition'
|
||||||
* UNIT ATTENTION occurred.
|
* sense code here it cannot return RTPG data during
|
||||||
|
* transition. So set the state to 'transitioning' directly.
|
||||||
*/
|
*/
|
||||||
if (sense_hdr.sense_key == NOT_READY &&
|
if (sense_hdr.sense_key == NOT_READY &&
|
||||||
sense_hdr.asc == 0x04 && sense_hdr.ascq == 0x0a)
|
sense_hdr.asc == 0x04 && sense_hdr.ascq == 0x0a) {
|
||||||
err = SCSI_DH_RETRY;
|
transitioning_sense = true;
|
||||||
else if (sense_hdr.sense_key == UNIT_ATTENTION)
|
goto skip_rtpg;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* Retry on any other UNIT ATTENTION occurred.
|
||||||
|
*/
|
||||||
|
if (sense_hdr.sense_key == UNIT_ATTENTION)
|
||||||
err = SCSI_DH_RETRY;
|
err = SCSI_DH_RETRY;
|
||||||
if (err == SCSI_DH_RETRY &&
|
if (err == SCSI_DH_RETRY &&
|
||||||
pg->expiry != 0 && time_before(jiffies, pg->expiry)) {
|
pg->expiry != 0 && time_before(jiffies, pg->expiry)) {
|
||||||
|
@ -666,7 +673,11 @@ static int alua_rtpg(struct scsi_device *sdev, struct alua_port_group *pg)
|
||||||
off = 8 + (desc[7] * 4);
|
off = 8 + (desc[7] * 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
skip_rtpg:
|
||||||
spin_lock_irqsave(&pg->lock, flags);
|
spin_lock_irqsave(&pg->lock, flags);
|
||||||
|
if (transitioning_sense)
|
||||||
|
pg->state = SCSI_ACCESS_STATE_TRANSITIONING;
|
||||||
|
|
||||||
sdev_printk(KERN_INFO, sdev,
|
sdev_printk(KERN_INFO, sdev,
|
||||||
"%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n",
|
"%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n",
|
||||||
ALUA_DH_NAME, pg->group_id, print_alua_state(pg->state),
|
ALUA_DH_NAME, pg->group_id, print_alua_state(pg->state),
|
||||||
|
|
|
@ -5477,6 +5477,8 @@ static int hpsa_ciss_submit(struct ctlr_info *h,
|
||||||
return SCSI_MLQUEUE_HOST_BUSY;
|
return SCSI_MLQUEUE_HOST_BUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
c->device = dev;
|
||||||
|
|
||||||
enqueue_cmd_and_start_io(h, c);
|
enqueue_cmd_and_start_io(h, c);
|
||||||
/* the cmd'll come back via intr handler in complete_scsi_command() */
|
/* the cmd'll come back via intr handler in complete_scsi_command() */
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -5548,6 +5550,7 @@ static int hpsa_ioaccel_submit(struct ctlr_info *h,
|
||||||
hpsa_cmd_init(h, c->cmdindex, c);
|
hpsa_cmd_init(h, c->cmdindex, c);
|
||||||
c->cmd_type = CMD_SCSI;
|
c->cmd_type = CMD_SCSI;
|
||||||
c->scsi_cmd = cmd;
|
c->scsi_cmd = cmd;
|
||||||
|
c->device = dev;
|
||||||
rc = hpsa_scsi_ioaccel_raid_map(h, c);
|
rc = hpsa_scsi_ioaccel_raid_map(h, c);
|
||||||
if (rc < 0) /* scsi_dma_map failed. */
|
if (rc < 0) /* scsi_dma_map failed. */
|
||||||
rc = SCSI_MLQUEUE_HOST_BUSY;
|
rc = SCSI_MLQUEUE_HOST_BUSY;
|
||||||
|
@ -5555,6 +5558,7 @@ static int hpsa_ioaccel_submit(struct ctlr_info *h,
|
||||||
hpsa_cmd_init(h, c->cmdindex, c);
|
hpsa_cmd_init(h, c->cmdindex, c);
|
||||||
c->cmd_type = CMD_SCSI;
|
c->cmd_type = CMD_SCSI;
|
||||||
c->scsi_cmd = cmd;
|
c->scsi_cmd = cmd;
|
||||||
|
c->device = dev;
|
||||||
rc = hpsa_scsi_ioaccel_direct_map(h, c);
|
rc = hpsa_scsi_ioaccel_direct_map(h, c);
|
||||||
if (rc < 0) /* scsi_dma_map failed. */
|
if (rc < 0) /* scsi_dma_map failed. */
|
||||||
rc = SCSI_MLQUEUE_HOST_BUSY;
|
rc = SCSI_MLQUEUE_HOST_BUSY;
|
||||||
|
|
|
@ -9055,7 +9055,6 @@ lpfc_sli4_queue_create(struct lpfc_hba *phba)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(BUILD_NVME)
|
|
||||||
/* Clear NVME stats */
|
/* Clear NVME stats */
|
||||||
if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
|
if (phba->cfg_enable_fc4_type & LPFC_ENABLE_NVME) {
|
||||||
for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
|
for (idx = 0; idx < phba->cfg_hdw_queue; idx++) {
|
||||||
|
@ -9063,7 +9062,6 @@ lpfc_sli4_queue_create(struct lpfc_hba *phba)
|
||||||
sizeof(phba->sli4_hba.hdwq[idx].nvme_cstat));
|
sizeof(phba->sli4_hba.hdwq[idx].nvme_cstat));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Clear SCSI stats */
|
/* Clear SCSI stats */
|
||||||
if (phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP) {
|
if (phba->cfg_enable_fc4_type & LPFC_ENABLE_FCP) {
|
||||||
|
|
|
@ -528,7 +528,6 @@ lpfc_sli4_io_xri_aborted(struct lpfc_hba *phba,
|
||||||
list_del_init(&psb->list);
|
list_del_init(&psb->list);
|
||||||
psb->exch_busy = 0;
|
psb->exch_busy = 0;
|
||||||
psb->status = IOSTAT_SUCCESS;
|
psb->status = IOSTAT_SUCCESS;
|
||||||
#ifdef BUILD_NVME
|
|
||||||
if (psb->cur_iocbq.iocb_flag == LPFC_IO_NVME) {
|
if (psb->cur_iocbq.iocb_flag == LPFC_IO_NVME) {
|
||||||
qp->abts_nvme_io_bufs--;
|
qp->abts_nvme_io_bufs--;
|
||||||
spin_unlock(&qp->abts_io_buf_list_lock);
|
spin_unlock(&qp->abts_io_buf_list_lock);
|
||||||
|
@ -536,7 +535,6 @@ lpfc_sli4_io_xri_aborted(struct lpfc_hba *phba,
|
||||||
lpfc_sli4_nvme_xri_aborted(phba, axri, psb);
|
lpfc_sli4_nvme_xri_aborted(phba, axri, psb);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
qp->abts_scsi_io_bufs--;
|
qp->abts_scsi_io_bufs--;
|
||||||
spin_unlock(&qp->abts_io_buf_list_lock);
|
spin_unlock(&qp->abts_io_buf_list_lock);
|
||||||
|
|
||||||
|
|
|
@ -3224,6 +3224,10 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||||
req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out);
|
req->req_q_in, req->req_q_out, rsp->rsp_q_in, rsp->rsp_q_out);
|
||||||
|
|
||||||
ha->wq = alloc_workqueue("qla2xxx_wq", 0, 0);
|
ha->wq = alloc_workqueue("qla2xxx_wq", 0, 0);
|
||||||
|
if (unlikely(!ha->wq)) {
|
||||||
|
ret = -ENOMEM;
|
||||||
|
goto probe_failed;
|
||||||
|
}
|
||||||
|
|
||||||
if (ha->isp_ops->initialize_adapter(base_vha)) {
|
if (ha->isp_ops->initialize_adapter(base_vha)) {
|
||||||
ql_log(ql_log_fatal, base_vha, 0x00d6,
|
ql_log(ql_log_fatal, base_vha, 0x00d6,
|
||||||
|
|
|
@ -730,6 +730,14 @@ sdev_store_delete(struct device *dev, struct device_attribute *attr,
|
||||||
const char *buf, size_t count)
|
const char *buf, size_t count)
|
||||||
{
|
{
|
||||||
struct kernfs_node *kn;
|
struct kernfs_node *kn;
|
||||||
|
struct scsi_device *sdev = to_scsi_device(dev);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We need to try to get module, avoiding the module been removed
|
||||||
|
* during delete.
|
||||||
|
*/
|
||||||
|
if (scsi_device_get(sdev))
|
||||||
|
return -ENODEV;
|
||||||
|
|
||||||
kn = sysfs_break_active_protection(&dev->kobj, &attr->attr);
|
kn = sysfs_break_active_protection(&dev->kobj, &attr->attr);
|
||||||
WARN_ON_ONCE(!kn);
|
WARN_ON_ONCE(!kn);
|
||||||
|
@ -744,9 +752,10 @@ sdev_store_delete(struct device *dev, struct device_attribute *attr,
|
||||||
* state into SDEV_DEL.
|
* state into SDEV_DEL.
|
||||||
*/
|
*/
|
||||||
device_remove_file(dev, attr);
|
device_remove_file(dev, attr);
|
||||||
scsi_remove_device(to_scsi_device(dev));
|
scsi_remove_device(sdev);
|
||||||
if (kn)
|
if (kn)
|
||||||
sysfs_unbreak_active_protection(kn);
|
sysfs_unbreak_active_protection(kn);
|
||||||
|
scsi_device_put(sdev);
|
||||||
return count;
|
return count;
|
||||||
};
|
};
|
||||||
static DEVICE_ATTR(delete, S_IWUSR, NULL, sdev_store_delete);
|
static DEVICE_ATTR(delete, S_IWUSR, NULL, sdev_store_delete);
|
||||||
|
|
|
@ -66,10 +66,8 @@ static int snirm710_probe(struct platform_device *dev)
|
||||||
|
|
||||||
base = res->start;
|
base = res->start;
|
||||||
hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
|
hostdata = kzalloc(sizeof(*hostdata), GFP_KERNEL);
|
||||||
if (!hostdata) {
|
if (!hostdata)
|
||||||
dev_printk(KERN_ERR, dev, "Failed to allocate host data\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
hostdata->dev = &dev->dev;
|
hostdata->dev = &dev->dev;
|
||||||
dma_set_mask(&dev->dev, DMA_BIT_MASK(32));
|
dma_set_mask(&dev->dev, DMA_BIT_MASK(32));
|
||||||
|
|
|
@ -1074,27 +1074,6 @@ passthrough_parse_cdb(struct se_cmd *cmd,
|
||||||
struct se_device *dev = cmd->se_dev;
|
struct se_device *dev = cmd->se_dev;
|
||||||
unsigned int size;
|
unsigned int size;
|
||||||
|
|
||||||
/*
|
|
||||||
* Clear a lun set in the cdb if the initiator talking to use spoke
|
|
||||||
* and old standards version, as we can't assume the underlying device
|
|
||||||
* won't choke up on it.
|
|
||||||
*/
|
|
||||||
switch (cdb[0]) {
|
|
||||||
case READ_10: /* SBC - RDProtect */
|
|
||||||
case READ_12: /* SBC - RDProtect */
|
|
||||||
case READ_16: /* SBC - RDProtect */
|
|
||||||
case SEND_DIAGNOSTIC: /* SPC - SELF-TEST Code */
|
|
||||||
case VERIFY: /* SBC - VRProtect */
|
|
||||||
case VERIFY_16: /* SBC - VRProtect */
|
|
||||||
case WRITE_VERIFY: /* SBC - VRProtect */
|
|
||||||
case WRITE_VERIFY_12: /* SBC - VRProtect */
|
|
||||||
case MAINTENANCE_IN: /* SPC - Parameter Data Format for SA RTPG */
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
cdb[1] &= 0x1f; /* clear logical unit number */
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For REPORT LUNS we always need to emulate the response, for everything
|
* For REPORT LUNS we always need to emulate the response, for everything
|
||||||
* else, pass it up.
|
* else, pass it up.
|
||||||
|
|
Loading…
Add table
Reference in a new issue