Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 21 Sep 2019 17:50:15 +0000 (10:50 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 21 Sep 2019 17:50:15 +0000 (10:50 -0700)
Pull SCSI updates from James Bottomley:
 "This is mostly update of the usual drivers: qla2xxx, ufs, smartpqi,
  lpfc, hisi_sas, qedf, mpt3sas; plus a whole load of minor updates. The
  only core change this time around is the addition of request batching
  for virtio. Since batching requires an additional flag to use, it
  should be invisible to the rest of the drivers"

* tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (264 commits)
  scsi: hisi_sas: Fix the conflict between device gone and host reset
  scsi: hisi_sas: Add BIST support for phy loopback
  scsi: hisi_sas: Add hisi_sas_debugfs_alloc() to centralise allocation
  scsi: hisi_sas: Remove some unused function arguments
  scsi: hisi_sas: Remove redundant work declaration
  scsi: hisi_sas: Remove hisi_sas_hw.slot_complete
  scsi: hisi_sas: Assign NCQ tag for all NCQ commands
  scsi: hisi_sas: Update all the registers after suspend and resume
  scsi: hisi_sas: Retry 3 times TMF IO for SAS disks when init device
  scsi: hisi_sas: Remove sleep after issue phy reset if sas_smp_phy_control() fails
  scsi: hisi_sas: Directly return when running I_T_nexus reset if phy disabled
  scsi: hisi_sas: Use true/false as input parameter of sas_phy_reset()
  scsi: hisi_sas: add debugfs auto-trigger for internal abort time out
  scsi: virtio_scsi: unplug LUNs when events missed
  scsi: scsi_dh_rdac: zero cdb in send_mode_select()
  scsi: fcoe: fix null-ptr-deref Read in fc_release_transport
  scsi: ufs-hisi: use devm_platform_ioremap_resource() to simplify code
  scsi: ufshcd: use devm_platform_ioremap_resource() to simplify code
  scsi: hisi_sas: use devm_platform_ioremap_resource() to simplify code
  scsi: ufs: Use kmemdup in ufshcd_read_string_desc()
  ...

18 files changed:
1  2 
drivers/scsi/bnx2fc/bnx2fc_fcoe.c
drivers/scsi/fcoe/fcoe.c
drivers/scsi/ibmvscsi/ibmvfc.c
drivers/scsi/lpfc/lpfc.h
drivers/scsi/lpfc/lpfc_attr.c
drivers/scsi/lpfc/lpfc_init.c
drivers/scsi/lpfc/lpfc_sli4.h
drivers/scsi/megaraid/megaraid_sas_base.c
drivers/scsi/megaraid/megaraid_sas_fusion.c
drivers/scsi/mpt3sas/mpt3sas_base.c
drivers/scsi/qedf/qedf_main.c
drivers/scsi/qla2xxx/qla_attr.c
drivers/scsi/qla2xxx/qla_init.c
drivers/scsi/qla2xxx/qla_os.c
drivers/scsi/scsi_lib.c
drivers/scsi/sd.c
drivers/scsi/ufs/ufshcd.c
drivers/target/target_core_user.c

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index a81ef0293696d34efe7da7e73ed5e0d738fdc826,4bdd58de469294fac084aab3d8757620f936ee2b..0d4882a9e634c40e43c561626d54d5cce3f484c2
  #define LPFC_HBA_HDWQ_MAX     128
  #define LPFC_HBA_HDWQ_DEF     0
  
- /* Common buffer size to accomidate SCSI and NVME IO buffers */
- #define LPFC_COMMON_IO_BUF_SZ 768
 +/* FCP MQ queue count limiting */
 +#define LPFC_FCP_MQ_THRESHOLD_MIN     0
 +#define LPFC_FCP_MQ_THRESHOLD_MAX     256
 +#define LPFC_FCP_MQ_THRESHOLD_DEF     8
 +
  /*
   * Provide the default FCF Record attributes used by the driver
   * when nonFIP mode is configured and there is no other default
Simple merge
Simple merge
Simple merge
Simple merge
index 98e60a34afd9c083fa0ed6377c8ef32d4f3fd3c3,51154c0493859ba282cc0a56c62b5d6f0675f00a..73db01e3b4e4a99e6e42983a89f1c2a8e6b58234
@@@ -4824,8 -4803,7 +4811,8 @@@ struct scsi_qla_host *qla2x00_create_ho
                    "Alloc failed for scan database.\n");
                dma_free_coherent(&ha->pdev->dev, vha->gnl.size,
                    vha->gnl.l, vha->gnl.ldma);
-               scsi_remove_host(vha->host);
 +              vha->gnl.l = NULL;
+               scsi_host_put(vha->host);
                return NULL;
        }
        INIT_DELAYED_WORK(&vha->scan.scan_work, qla_scan_work_fn);
Simple merge
Simple merge
Simple merge
Simple merge