aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_attr.c
diff options
context:
space:
mode:
authorShyam Sundar <shyam.sundar@qlogic.com>2008-05-13 01:21:07 -0400
committerJames Bottomley <James.Bottomley@HansenPartnership.com>2008-05-15 11:39:28 -0400
commit2f2fa13d5665d7d5f2ba6068dd28ca7796fa9ea8 (patch)
tree0783cfaacd1eea6da7a49eaf711e6709d815e8d7 /drivers/scsi/qla2xxx/qla_attr.c
parent8f40f672e6bb071812f61bfbd30efc3fc1263ad1 (diff)
[SCSI] qla2xxx: Return correct port_type to FC-transport for Vports.
For Vports, the port_type should be set to FC_PORTTYPE_NPIV. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_attr.c')
-rw-r--r--drivers/scsi/qla2xxx/qla_attr.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c
index 287690853caf..2caf841cbba9 100644
--- a/drivers/scsi/qla2xxx/qla_attr.c
+++ b/drivers/scsi/qla2xxx/qla_attr.c
@@ -886,9 +886,13 @@ qla2x00_get_host_speed(struct Scsi_Host *shost)
886static void 886static void
887qla2x00_get_host_port_type(struct Scsi_Host *shost) 887qla2x00_get_host_port_type(struct Scsi_Host *shost)
888{ 888{
889 scsi_qla_host_t *ha = to_qla_parent(shost_priv(shost)); 889 scsi_qla_host_t *ha = shost_priv(shost);
890 uint32_t port_type = FC_PORTTYPE_UNKNOWN; 890 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
891 891
892 if (ha->parent) {
893 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
894 return;
895 }
892 switch (ha->current_topology) { 896 switch (ha->current_topology) {
893 case ISP_CFG_NL: 897 case ISP_CFG_NL:
894 port_type = FC_PORTTYPE_LPORT; 898 port_type = FC_PORTTYPE_LPORT;