diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2008-04-24 18:21:23 -0400 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-04-27 13:19:58 -0400 |
commit | 550bf57dfb2200721baa43cfd9a8c75c2c166870 (patch) | |
tree | da0f11a9d1511deee63e78492a1c804980e8ddf7 /drivers/scsi | |
parent | c5722708c236b51286651b8c07855f764239453b (diff) |
[SCSI] qla2xxx: Wakeup DPC thread to process any deferred-work requests.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_os.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 8b33b163b1d4..978d8bdb9b34 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c | |||
@@ -2599,6 +2599,10 @@ qla2x00_timer(scsi_qla_host_t *ha) | |||
2599 | start_dpc++; | 2599 | start_dpc++; |
2600 | } | 2600 | } |
2601 | 2601 | ||
2602 | /* Process any deferred work. */ | ||
2603 | if (!list_empty(&ha->work_list)) | ||
2604 | start_dpc++; | ||
2605 | |||
2602 | /* Schedule the DPC routine if needed */ | 2606 | /* Schedule the DPC routine if needed */ |
2603 | if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) || | 2607 | if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) || |
2604 | test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) || | 2608 | test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) || |