aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/device_handler/scsi_dh_rdac.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-10-02 22:01:32 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-10-02 22:01:32 -0400
commit3151367f8778a1789d6f6e6f6c642681b6cd6d64 (patch)
tree1869d5429a25abd994ae94079808b8db060ec6f3 /drivers/scsi/device_handler/scsi_dh_rdac.c
parent16642a2e7be23bbda013fc32d8f6c68982eab603 (diff)
parentfe709ed827d370e6b0c0a9f9456da1c22bdcd118 (diff)
Merge tag 'scsi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull first round of SCSI updates from James Bottomley: "This is a large set of updates, mostly for drivers (qla2xxx [including support for new 83xx based card], qla4xxx, mpt2sas, bfa, zfcp, hpsa, be2iscsi, isci, lpfc, ipr, ibmvfc, ibmvscsi, megaraid_sas). There's also a rework for tape adding virtually unlimited numbers of tape drives plus a set of dif fixes for sd and a fix for a live lock on hot remove of SCSI devices. This round includes a signed tag pull of isci-for-3.6 Signed-off-by: James Bottomley <JBottomley@Parallels.com>" Fix up trivial conflict in drivers/scsi/qla2xxx/qla_nx.c due to new PCI helper function use in a function that was removed by this pull. * tag 'scsi-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (198 commits) [SCSI] st: remove st_mutex [SCSI] sd: Ensure we correctly disable devices with unknown protection type [SCSI] hpsa: gen8plus Smart Array IDs [SCSI] qla4xxx: Update driver version to 5.03.00-k1 [SCSI] qla4xxx: Disable generating pause frames for ISP83XX [SCSI] qla4xxx: Fix double clearing of risc_intr for ISP83XX [SCSI] qla4xxx: IDC implementation for Loopback [SCSI] qla4xxx: update copyrights in LICENSE.qla4xxx [SCSI] qla4xxx: Fix panic while rmmod [SCSI] qla4xxx: Fail probe_adapter if IRQ allocation fails [SCSI] qla4xxx: Prevent MSI/MSI-X falling back to INTx for ISP82XX [SCSI] qla4xxx: Update idc reg in case of PCI AER [SCSI] qla4xxx: Fix double IDC locking in qla4_8xxx_error_recovery [SCSI] qla4xxx: Clear interrupt while unloading driver for ISP83XX [SCSI] qla4xxx: Print correct IDC version [SCSI] qla4xxx: Added new mbox cmd to pass driver version to FW [SCSI] scsi_dh_alua: Enable STPG for unavailable ports [SCSI] scsi_remove_target: fix softlockup regression on hot remove [SCSI] ibmvscsi: Fix host config length field overflow [SCSI] ibmvscsi: Remove backend abstraction ...
Diffstat (limited to 'drivers/scsi/device_handler/scsi_dh_rdac.c')
-rw-r--r--drivers/scsi/device_handler/scsi_dh_rdac.c26
1 files changed, 8 insertions, 18 deletions
diff --git a/drivers/scsi/device_handler/scsi_dh_rdac.c b/drivers/scsi/device_handler/scsi_dh_rdac.c
index 20c4557f5abd..69c915aa77c2 100644
--- a/drivers/scsi/device_handler/scsi_dh_rdac.c
+++ b/drivers/scsi/device_handler/scsi_dh_rdac.c
@@ -790,29 +790,19 @@ static const struct scsi_dh_devlist rdac_dev_list[] = {
790 {"IBM", "1815"}, 790 {"IBM", "1815"},
791 {"IBM", "1818"}, 791 {"IBM", "1818"},
792 {"IBM", "3526"}, 792 {"IBM", "3526"},
793 {"SGI", "TP9400"}, 793 {"SGI", "TP9"},
794 {"SGI", "TP9500"},
795 {"SGI", "TP9700"},
796 {"SGI", "IS"}, 794 {"SGI", "IS"},
797 {"STK", "OPENstorage D280"}, 795 {"STK", "OPENstorage D280"},
798 {"SUN", "CSM200_R"},
799 {"SUN", "LCSM100_I"},
800 {"SUN", "LCSM100_S"},
801 {"SUN", "LCSM100_E"},
802 {"SUN", "LCSM100_F"},
803 {"DELL", "MD3000"},
804 {"DELL", "MD3000i"},
805 {"DELL", "MD32xx"},
806 {"DELL", "MD32xxi"},
807 {"DELL", "MD36xxi"},
808 {"DELL", "MD36xxf"},
809 {"LSI", "INF-01-00"},
810 {"ENGENIO", "INF-01-00"},
811 {"STK", "FLEXLINE 380"}, 796 {"STK", "FLEXLINE 380"},
812 {"SUN", "CSM100_R_FC"}, 797 {"SUN", "CSM"},
798 {"SUN", "LCSM100"},
813 {"SUN", "STK6580_6780"}, 799 {"SUN", "STK6580_6780"},
814 {"SUN", "SUN_6180"}, 800 {"SUN", "SUN_6180"},
815 {"SUN", "ArrayStorage"}, 801 {"SUN", "ArrayStorage"},
802 {"DELL", "MD3"},
803 {"NETAPP", "INF-01-00"},
804 {"LSI", "INF-01-00"},
805 {"ENGENIO", "INF-01-00"},
816 {NULL, NULL}, 806 {NULL, NULL},
817}; 807};
818 808
@@ -863,7 +853,7 @@ static int rdac_bus_attach(struct scsi_device *sdev)
863 if (!scsi_dh_data) { 853 if (!scsi_dh_data) {
864 sdev_printk(KERN_ERR, sdev, "%s: Attach failed\n", 854 sdev_printk(KERN_ERR, sdev, "%s: Attach failed\n",
865 RDAC_NAME); 855 RDAC_NAME);
866 return 0; 856 return -ENOMEM;
867 } 857 }
868 858
869 scsi_dh_data->scsi_dh = &rdac_dh; 859 scsi_dh_data->scsi_dh = &rdac_dh;