scsi: qla2xxx: Use fabric name for Get Port Speed command
authorQuinn Tran <quinn.tran@cavium.com>
Wed, 23 Aug 2017 22:05:06 +0000 (15:05 -0700)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 25 Aug 2017 02:29:23 +0000 (22:29 -0400)
The Get Port Speed switch command needs the fabric port name of the
remote device.  Current code uses the registered WWPN.

Fixes: 726b85487067d ("qla2xxx: Add framework for async fabric discovery")
Cc: <stable@vger.kernel.org> # 4.10+
Signed-off-by: Quinn Tran <quinn.tran@cavium.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/qla2xxx/qla_gs.c

index b323a7c..0ec2509 100644 (file)
@@ -3080,7 +3080,7 @@ int qla24xx_async_gpsc(scsi_qla_host_t *vha, fc_port_t *fcport)
                GPSC_RSP_SIZE);
 
        /* GPSC req */
-       memcpy(ct_req->req.gpsc.port_name, fcport->port_name,
+       memcpy(ct_req->req.gpsc.port_name, fcport->fabric_port_name,
                WWN_SIZE);
 
        sp->u.iocb_cmd.u.ctarg.req = fcport->ct_desc.ct_sns;