diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-12 21:57:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-12 21:57:01 -0400 |
commit | 6a5a3d6a4adde0c66f3be29bbd7c0d6ffb7e1a40 (patch) | |
tree | ae416ffa4458df755f984a05d65ee1c3e220c40b /drivers/scsi/qla2xxx | |
parent | 8bbbfa70549bd84f29ff331d0ac051897ccbbd72 (diff) | |
parent | 5c1b10ab7f93d24f29b5630286e323d1c5802d5c (diff) |
Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
Pull misc SCSI updates from James Bottomley:
"This is an assorted set of stragglers into the merge window with
driver updates for megaraid_sas, lpfc, bfi and mvumi. It also
includes some fairly major fixes for virtio-scsi (scatterlist init),
scsi_debug (off by one error), storvsc (use after free) and qla2xxx
(potential deadlock).
Signed-off-by: James Bottomley <JBottomley@Parallels.com>"
* tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (49 commits)
[SCSI] storvsc: Account for in-transit packets in the RESET path
[SCSI] qla2xxx: fix potential deadlock on ha->hardware_lock
[SCSI] scsi_debug: Fix off-by-one bug when unmapping region
[SCSI] Shorten the path length of scsi_cmd_to_driver()
[SCSI] virtio-scsi: support online resizing of disks
[SCSI] virtio-scsi: fix LUNs greater than 255
[SCSI] virtio-scsi: initialize scatterlist structure
[SCSI] megaraid_sas: Version, Changelog, Copyright update
[SCSI] megaraid_sas: Remove duplicate code
[SCSI] megaraid_sas: Add SystemPD FastPath support
[SCSI] megaraid_sas: Add array boundary check for SystemPD
[SCSI] megaraid_sas: Load io_request DataLength in bytes
[SCSI] megaraid_sas: Add module param for configurable MSI-X vector count
[SCSI] megaraid_sas: Remove un-needed completion_lock spinlock calls
[SCSI] lpfc 8.3.35: Update lpfc version for 8.3.35 driver release
[SCSI] lpfc 8.3.35: Fixed not reporting logical link speed to SCSI midlayer when QoS not on
[SCSI] lpfc 8.3.35: Fix error with fabric service parameters causing performance issues
[SCSI] lpfc 8.3.35: Fixed SCSI host create showing wrong link speed on SLI3 HBA ports
[SCSI] lpfc 8.3.35: Fixed not checking solicition in progress bit when verifying FCF record for use
[SCSI] lpfc 8.3.35: Fixed messages for misconfigured port errors
...
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 799a58bb9859..48fca47384b7 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c | |||
@@ -2080,6 +2080,7 @@ qla2x00_configure_hba(scsi_qla_host_t *vha) | |||
2080 | uint8_t domain; | 2080 | uint8_t domain; |
2081 | char connect_type[22]; | 2081 | char connect_type[22]; |
2082 | struct qla_hw_data *ha = vha->hw; | 2082 | struct qla_hw_data *ha = vha->hw; |
2083 | unsigned long flags; | ||
2083 | 2084 | ||
2084 | /* Get host addresses. */ | 2085 | /* Get host addresses. */ |
2085 | rval = qla2x00_get_adapter_id(vha, | 2086 | rval = qla2x00_get_adapter_id(vha, |
@@ -2154,9 +2155,9 @@ qla2x00_configure_hba(scsi_qla_host_t *vha) | |||
2154 | vha->d_id.b.area = area; | 2155 | vha->d_id.b.area = area; |
2155 | vha->d_id.b.al_pa = al_pa; | 2156 | vha->d_id.b.al_pa = al_pa; |
2156 | 2157 | ||
2157 | spin_lock(&ha->vport_slock); | 2158 | spin_lock_irqsave(&ha->vport_slock, flags); |
2158 | qlt_update_vp_map(vha, SET_AL_PA); | 2159 | qlt_update_vp_map(vha, SET_AL_PA); |
2159 | spin_unlock(&ha->vport_slock); | 2160 | spin_unlock_irqrestore(&ha->vport_slock, flags); |
2160 | 2161 | ||
2161 | if (!vha->flags.init_done) | 2162 | if (!vha->flags.init_done) |
2162 | ql_log(ql_log_info, vha, 0x2010, | 2163 | ql_log(ql_log_info, vha, 0x2010, |