diff options
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_os.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c index fd1af23e6801..e575d765ba26 100644 --- a/drivers/scsi/qla4xxx/ql4_os.c +++ b/drivers/scsi/qla4xxx/ql4_os.c | |||
@@ -1208,7 +1208,7 @@ static void qla4xxx_do_dpc(struct work_struct *work) | |||
1208 | 1208 | ||
1209 | /* Initialization not yet finished. Don't do anything yet. */ | 1209 | /* Initialization not yet finished. Don't do anything yet. */ |
1210 | if (!test_bit(AF_INIT_DONE, &ha->flags)) | 1210 | if (!test_bit(AF_INIT_DONE, &ha->flags)) |
1211 | return; | 1211 | goto do_dpc_exit; |
1212 | 1212 | ||
1213 | /* HBA is in the process of being permanently disabled. | 1213 | /* HBA is in the process of being permanently disabled. |
1214 | * Don't process anything */ | 1214 | * Don't process anything */ |
@@ -1347,6 +1347,8 @@ dpc_post_reset_ha: | |||
1347 | } | 1347 | } |
1348 | } | 1348 | } |
1349 | } | 1349 | } |
1350 | |||
1351 | do_dpc_exit: | ||
1350 | clear_bit(AF_DPC_SCHEDULED, &ha->flags); | 1352 | clear_bit(AF_DPC_SCHEDULED, &ha->flags); |
1351 | } | 1353 | } |
1352 | 1354 | ||