diff options
author | matthias@kaehlcke.net <matthias@kaehlcke.net> | 2008-05-13 01:21:11 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-05-15 11:39:29 -0400 |
commit | 6c2f527cb84cbd7d2d8a668c979e70bf78980ccc (patch) | |
tree | 5674b1504695f593bab09a32663beac82d77a20a /drivers/scsi/qla2xxx/qla_mbx.c | |
parent | e1e82b6f0df0c5175ddd3d4f8862507aa71da8e9 (diff) |
[SCSI] qla2xxx: Convert vport_sem to a mutex
The semaphore vport_sem is used as a mutex. Convert it to the
mutex API.
Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_mbx.c')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_mbx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/qla2xxx/qla_mbx.c b/drivers/scsi/qla2xxx/qla_mbx.c index 210060420809..3800876f96c3 100644 --- a/drivers/scsi/qla2xxx/qla_mbx.c +++ b/drivers/scsi/qla2xxx/qla_mbx.c | |||
@@ -2807,9 +2807,9 @@ qla24xx_control_vp(scsi_qla_host_t *vha, int cmd) | |||
2807 | */ | 2807 | */ |
2808 | map = (vp_index - 1) / 8; | 2808 | map = (vp_index - 1) / 8; |
2809 | pos = (vp_index - 1) & 7; | 2809 | pos = (vp_index - 1) & 7; |
2810 | down(&ha->vport_sem); | 2810 | mutex_lock(&ha->vport_lock); |
2811 | vce->vp_idx_map[map] |= 1 << pos; | 2811 | vce->vp_idx_map[map] |= 1 << pos; |
2812 | up(&ha->vport_sem); | 2812 | mutex_unlock(&ha->vport_lock); |
2813 | 2813 | ||
2814 | rval = qla2x00_issue_iocb(ha, vce, vce_dma, 0); | 2814 | rval = qla2x00_issue_iocb(ha, vce, vce_dma, 0); |
2815 | if (rval != QLA_SUCCESS) { | 2815 | if (rval != QLA_SUCCESS) { |