]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
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)
committerSeth Forshee <seth.forshee@canonical.com>
Thu, 28 Sep 2017 14:34:57 +0000 (10:34 -0400)
BugLink: http://bugs.launchpad.net/bugs/1720154
commit b2e8ae3f0e342a3308b4573790bd42528e51885a upstream.

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
drivers/scsi/qla2xxx/qla_gs.c

index b323a7c71eda241eb9aa9e853f5c14ebd58293b5..0ec250993e93c3a5464f4c75d85028aae6bf2dfd 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;