Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263800
b: refs/heads/master
c: 3553d34
h: refs/heads/master
v: v3
  • Loading branch information
Saurav Kashyap authored and James Bottomley committed Aug 27, 2011
1 parent 1d66222 commit 13ea9e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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: bc91ade9b7bc274d625c9b24c04d365a2daf481e
refs/heads/master: 3553d343e7acc418988cb8f22cd5b4976e7b484a
5 changes: 3 additions & 2 deletions trunk/drivers/scsi/qla2xxx/qla_nx.c
Original file line number Diff line number Diff line change
Expand Up @@ -2208,6 +2208,7 @@ qla82xx_msix_rsp_q(int irq, void *dev_id)
struct qla_hw_data *ha;
struct rsp_que *rsp;
struct device_reg_82xx __iomem *reg;
unsigned long flags;

rsp = (struct rsp_que *) dev_id;
if (!rsp) {
Expand All @@ -2218,11 +2219,11 @@ qla82xx_msix_rsp_q(int irq, void *dev_id)

ha = rsp->hw;
reg = &ha->iobase->isp82;
spin_lock_irq(&ha->hardware_lock);
spin_lock_irqsave(&ha->hardware_lock, flags);
vha = pci_get_drvdata(ha->pdev);
qla24xx_process_response_queue(vha, rsp);
WRT_REG_DWORD(&reg->host_int, 0);
spin_unlock_irq(&ha->hardware_lock);
spin_unlock_irqrestore(&ha->hardware_lock, flags);
return IRQ_HANDLED;
}

Expand Down

0 comments on commit 13ea9e1

Please sign in to comment.