This is a set of minor fixes and clean ups in the core and various drivers. The only core change in behaviour is the I/O retry for spinup notify, but that shouldn't impact anything other than the failing case. The patch is available here: git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git scsi-misc And the short changelog is: Bart Van Assche (1): scsi: core: Inline scsi_mq_alloc_queue() Christophe JAILLET (3): scsi: message: mptfc: Switch from pci_ to dma_ API scsi: be2iscsi: Fix some missing space in some messages scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() Colin Ian King (1): scsi: aic7xxx: Fix unintentional sign extension issue on left shift of u8 Hannes Reinecke (1): scsi: virtio_scsi: Do not overwrite SCSI status James Smart (2): scsi: elx: efct: Fix vport list linkage in LIO backend scsi: elx: libefc_sli: Fix ANDing with zero bit value Javed Hasan (2): scsi: qedf: Add check to synchronize abort and flush scsi: libfc: Fix array index out of bound exception Quat Le (1): scsi: core: Retry I/O for Notify (Enable Spinup) Required error Quinn Tran (1): scsi: qla2xxx: Add heartbeat check SeongJae Park (1): scsi: bnx2fc: Remove meaningless bnx2fc_abts_cleanup() return value assignment Sreekanth Reddy (2): scsi: mpi3mr: Fix warnings reported by smatch scsi: MAINTAINERS: Add mpi3mr driver maintainers Wen Xiong (1): scsi: ipr: System crashes when seeing type 20 error Xie Yongji (1): scsi: virtio_scsi: Add validation for residual bytes from response YueHaibing (1): scsi: ufs: Fix build warning without CONFIG_PM Yufen Yu (1): scsi: libsas: Add LUN number check in .slave_alloc callback Zhen Lei (4): scsi: mvsas: Use DEVICE_ATTR_RO()/RW() macro scsi: megaraid_mbox: Use DEVICE_ATTR_ADMIN_RO() macro scsi: qedf: Use DEVICE_ATTR_RO() macro scsi: qedi: Use DEVICE_ATTR_RO() macro And the diffstat: MAINTAINERS | 11 ++++ drivers/message/fusion/mptfc.c | 35 +++++------ drivers/scsi/aic7xxx/aic7xxx_core.c | 2 +- drivers/scsi/aic94xx/aic94xx_init.c | 1 + drivers/scsi/be2iscsi/be_main.c | 103 +++++++++++++-------------------- drivers/scsi/bnx2fc/bnx2fc_io.c | 2 +- drivers/scsi/elx/efct/efct_lio.c | 8 +-- drivers/scsi/elx/libefc_sli/sli4.c | 2 - drivers/scsi/hisi_sas/hisi_sas_v1_hw.c | 1 + drivers/scsi/hisi_sas/hisi_sas_v2_hw.c | 1 + drivers/scsi/hisi_sas/hisi_sas_v3_hw.c | 1 + drivers/scsi/ipr.c | 4 +- drivers/scsi/ipr.h | 1 + drivers/scsi/isci/init.c | 1 + drivers/scsi/libfc/fc_rport.c | 13 +++-- drivers/scsi/libsas/sas_scsi_host.c | 9 +++ drivers/scsi/megaraid/megaraid_mbox.c | 18 +++--- drivers/scsi/mpi3mr/mpi3mr_os.c | 5 +- drivers/scsi/mvsas/mv_init.c | 27 ++++----- drivers/scsi/pm8001/pm8001_init.c | 1 + drivers/scsi/qedf/qedf_attr.c | 14 ++--- drivers/scsi/qedf/qedf_io.c | 22 ++++++- drivers/scsi/qedi/qedi_sysfs.c | 14 ++--- drivers/scsi/qla2xxx/qla_def.h | 4 ++ drivers/scsi/qla2xxx/qla_gbl.h | 1 + drivers/scsi/qla2xxx/qla_init.c | 6 +- drivers/scsi/qla2xxx/qla_iocb.c | 4 ++ drivers/scsi/qla2xxx/qla_isr.c | 4 ++ drivers/scsi/qla2xxx/qla_mbx.c | 27 +++++++++ drivers/scsi/qla2xxx/qla_nvme.c | 4 ++ drivers/scsi/qla2xxx/qla_os.c | 68 ++++++++++++++++++++++ drivers/scsi/scsi_lib.c | 13 +---- drivers/scsi/scsi_priv.h | 1 - drivers/scsi/scsi_scan.c | 12 ++-- drivers/scsi/ufs/ufshcd.c | 4 ++ drivers/scsi/virtio_scsi.c | 5 +- 36 files changed, 287 insertions(+), 162 deletions(-) James