diff options
author | Vikas Chaudhary <[email protected]> | 2011-03-21 03:34:24 -0700 |
---|---|---|
committer | James Bottomley <[email protected]> | 2011-03-23 12:48:26 -0500 |
commit | 9640de2099a3c7936b65bf3a45e67a324de950c8 (patch) | |
tree | e1dcde8d3ff0b8833cd2f6ea5b1e7af61b48d5fb | |
parent | 8c3adc796f32fa4878ec843f8960717ba377e024 (diff) |
[SCSI] qla4xxx: cleanup qla4xxx_initialize_ddb_list()
Remove process all aen code from qla4xxx_initialize_ddb_list()
as DPC activities should be done in DPC only.
Signed-off-by: Vikas Chaudhary <[email protected]>
Reviewed-by: Mike Christie <[email protected]>
Signed-off-by: James Bottomley <[email protected]>
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_init.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_init.c b/drivers/scsi/qla4xxx/ql4_init.c index 1629c48c35ef..22fc57e2bc05 100644 --- a/drivers/scsi/qla4xxx/ql4_init.c +++ b/drivers/scsi/qla4xxx/ql4_init.c @@ -1013,13 +1013,6 @@ static int qla4xxx_initialize_ddb_list(struct scsi_qla_host *ha) if ((status = qla4xxx_build_ddb_list(ha)) == QLA_ERROR) return status; - /* - * Targets can come online after the inital discovery, so processing - * the aens here will catch them. - */ - if (test_and_clear_bit(DPC_AEN, &ha->dpc_flags)) - qla4xxx_process_aen(ha, PROCESS_ALL_AENS); - return status; } |