scsi: qla2xxx: Use BIT_6 to acquire FAWWPN from switch
If FA-WWPN feature disabled on the switch side and enabled for the
adapter, then driver would update the port name with switch port name.
This patch fixes issue by checking correct BIT flag to validate.
Fixes: 41dc529a46
("qla2xxx: Improve RSCN handling in driver")
Cc: <stable@vger.kernel.org>
Signed-off-by: Sawan Chandak <sawan.chandak@cavium.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
a17305954d
commit
fcc5b5cd72
|
@ -3682,7 +3682,7 @@ qla24xx_report_id_acquisition(scsi_qla_host_t *vha,
|
|||
if (qla_ini_mode_enabled(vha) &&
|
||||
ha->flags.fawwpn_enabled &&
|
||||
(rptid_entry->u.f1.flags &
|
||||
VP_FLAGS_NAME_VALID)) {
|
||||
BIT_6)) {
|
||||
memcpy(vha->port_name,
|
||||
rptid_entry->u.f1.port_name,
|
||||
WWN_SIZE);
|
||||
|
|
Loading…
Reference in New Issue