Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 84401
b: refs/heads/master
c: 99363ef
h: refs/heads/master
i:
  84399: 94cfffa
v: v3
  • Loading branch information
Seokmann Ju authored and James Bottomley committed Feb 8, 2008
1 parent a3281be commit de5ca77
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 963b0fdd3a4aa68e6e65e0967ec0adcca0736fde
refs/heads/master: 99363ef81cc7d0bab275304b8d34cf71d189cdcc
15 changes: 15 additions & 0 deletions trunk/drivers/scsi/qla2xxx/qla_os.c
Original file line number Diff line number Diff line change
Expand Up @@ -2227,6 +2227,9 @@ qla2x00_do_dpc(void *data)
fc_port_t *fcport;
uint8_t status;
uint16_t next_loopid;
struct scsi_qla_host *vha;
int i;


ha = (scsi_qla_host_t *)data;

Expand Down Expand Up @@ -2269,6 +2272,18 @@ qla2x00_do_dpc(void *data)
}
clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
}

for_each_mapped_vp_idx(ha, i) {
list_for_each_entry(vha, &ha->vp_list,
vp_list) {
if (i == vha->vp_idx) {
set_bit(ISP_ABORT_NEEDED,
&vha->dpc_flags);
break;
}
}
}

DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
ha->host_no));
}
Expand Down

0 comments on commit de5ca77

Please sign in to comment.