Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 97587
b: refs/heads/master
c: e1e82b6
h: refs/heads/master
i:
  97585: ba51c2b
  97583: 80d0444
v: v3
  • Loading branch information
Daniel Walker authored and James Bottomley committed May 15, 2008
1 parent fc2092f commit 65e091f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0e973a24f02ed8c627271b013d69683b4497828d
refs/heads/master: e1e82b6f0df0c5175ddd3d4f8862507aa71da8e9
11 changes: 6 additions & 5 deletions trunk/drivers/scsi/qla2xxx/qla_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <linux/vmalloc.h>
#include <linux/delay.h>
#include <linux/kthread.h>
#include <linux/mutex.h>

#include <scsi/scsi_tcq.h>
#include <scsi/scsicam.h>
Expand Down Expand Up @@ -2634,7 +2635,7 @@ qla2x00_timer(scsi_qla_host_t *ha)
#define FW_FILE_ISP24XX "ql2400_fw.bin"
#define FW_FILE_ISP25XX "ql2500_fw.bin"

static DECLARE_MUTEX(qla_fw_lock);
static DEFINE_MUTEX(qla_fw_lock);

static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
{ .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
Expand Down Expand Up @@ -2665,7 +2666,7 @@ qla2x00_request_firmware(scsi_qla_host_t *ha)
blob = &qla_fw_blobs[FW_ISP25XX];
}

down(&qla_fw_lock);
mutex_lock(&qla_fw_lock);
if (blob->fw)
goto out;

Expand All @@ -2678,7 +2679,7 @@ qla2x00_request_firmware(scsi_qla_host_t *ha)
}

out:
up(&qla_fw_lock);
mutex_unlock(&qla_fw_lock);
return blob;
}

Expand All @@ -2687,11 +2688,11 @@ qla2x00_release_firmware(void)
{
int idx;

down(&qla_fw_lock);
mutex_lock(&qla_fw_lock);
for (idx = 0; idx < FW_BLOBS; idx++)
if (qla_fw_blobs[idx].fw)
release_firmware(qla_fw_blobs[idx].fw);
up(&qla_fw_lock);
mutex_unlock(&qla_fw_lock);
}

static pci_ers_result_t
Expand Down

0 comments on commit 65e091f

Please sign in to comment.