10 fixes. Of the three core changes, the two large ones are a complete reversion of the async rework and an ALUA timing rework (the latter shouldn't affect non-ALUA paths). The remaining patches are all small and all but one in drivers. The patch is available here: git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git scsi-fixes The short changelog is: Alim Akhtar (1): scsi: ufs: host: ufs-exynos: Make fsd_ufs_drvs static Bart Van Assche (2): scsi: sd: Revert "Rework asynchronous resume support" scsi: ufs: core: Reduce the power mode change timeout Brian Bunker (1): scsi: core: Allow the ALUA transitioning state enough time Guixin Liu (2): scsi: megaraid_sas: Remove unnecessary kfree() scsi: megaraid_sas: Fix double kfree() Kiwoong Kim (1): scsi: ufs: core: Enable link lost interrupt Mike Christie (1): scsi: core: Fix passthrough retry counter handling Saurabh Sengar (1): scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq Tony Battersby (1): scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX And the diffstat: drivers/scsi/megaraid/megaraid_sas_base.c | 8 +-- drivers/scsi/megaraid/megaraid_sas_fusion.c | 1 - drivers/scsi/qla2xxx/qla_target.c | 10 +--- drivers/scsi/scsi_lib.c | 47 +++++++++------- drivers/scsi/sd.c | 84 +++++++---------------------- drivers/scsi/sd.h | 5 -- drivers/scsi/storvsc_drv.c | 2 +- drivers/ufs/core/ufshcd.c | 9 +++- drivers/ufs/host/ufs-exynos.c | 2 +- include/ufs/ufshci.h | 6 +-- 10 files changed, 60 insertions(+), 114 deletions(-) With full diff below. James ---