Skip to content

Commit ad3efdb

Browse files
James BottomleyJames Bottomley
authored andcommitted
Merge remote-tracking branch 'mkp-scsi/4.10/scsi-fixes' into fixes
2 parents 6f3e71c + f2e767b commit ad3efdb

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

drivers/scsi/mpt3sas/mpt3sas_scsih.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4657,6 +4657,7 @@ _scsih_io_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
46574657
struct MPT3SAS_DEVICE *sas_device_priv_data;
46584658
u32 response_code = 0;
46594659
unsigned long flags;
4660+
unsigned int sector_sz;
46604661

46614662
mpi_reply = mpt3sas_base_get_reply_virt_addr(ioc, reply);
46624663
scmd = _scsih_scsi_lookup_get_clear(ioc, smid);
@@ -4715,6 +4716,20 @@ _scsih_io_done(struct MPT3SAS_ADAPTER *ioc, u16 smid, u8 msix_index, u32 reply)
47154716
}
47164717

47174718
xfer_cnt = le32_to_cpu(mpi_reply->TransferCount);
4719+
4720+
/* In case of bogus fw or device, we could end up having
4721+
* unaligned partial completion. We can force alignment here,
4722+
* then scsi-ml does not need to handle this misbehavior.
4723+
*/
4724+
sector_sz = scmd->device->sector_size;
4725+
if (unlikely(scmd->request->cmd_type == REQ_TYPE_FS && sector_sz &&
4726+
xfer_cnt % sector_sz)) {
4727+
sdev_printk(KERN_INFO, scmd->device,
4728+
"unaligned partial completion avoided (xfer_cnt=%u, sector_sz=%u)\n",
4729+
xfer_cnt, sector_sz);
4730+
xfer_cnt = round_down(xfer_cnt, sector_sz);
4731+
}
4732+
47184733
scsi_set_resid(scmd, scsi_bufflen(scmd) - xfer_cnt);
47194734
if (ioc_status & MPI2_IOCSTATUS_FLAG_LOG_INFO_AVAILABLE)
47204735
log_info = le32_to_cpu(mpi_reply->IOCLogInfo);

drivers/scsi/qla2xxx/qla_isr.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3238,7 +3238,7 @@ qla2x00_free_irqs(scsi_qla_host_t *vha)
32383238
* from a probe failure context.
32393239
*/
32403240
if (!ha->rsp_q_map || !ha->rsp_q_map[0])
3241-
return;
3241+
goto free_irqs;
32423242
rsp = ha->rsp_q_map[0];
32433243

32443244
if (ha->flags.msix_enabled) {
@@ -3258,6 +3258,7 @@ qla2x00_free_irqs(scsi_qla_host_t *vha)
32583258
free_irq(pci_irq_vector(ha->pdev, 0), rsp);
32593259
}
32603260

3261+
free_irqs:
32613262
pci_free_irq_vectors(ha->pdev);
32623263
}
32633264

drivers/scsi/qla2xxx/qla_os.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1616,7 +1616,7 @@ qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
16161616
/* Don't abort commands in adapter during EEH
16171617
* recovery as it's not accessible/responding.
16181618
*/
1619-
if (!ha->flags.eeh_busy) {
1619+
if (GET_CMD_SP(sp) && !ha->flags.eeh_busy) {
16201620
/* Get a reference to the sp and drop the lock.
16211621
* The reference ensures this sp->done() call
16221622
* - and not the call in qla2xxx_eh_abort() -

0 commit comments

Comments
 (0)