diff options
author | Bhanu Prakash Gollapudi | 2011-05-27 20:47:25 +0200 |
---|---|---|
committer | James Bottomley | 2011-06-29 17:49:26 +0200 |
commit | a4dc08cecfdb3172be61227324a4d2c5fe2de9e5 (patch) | |
tree | a923ff42b9f267f586ee2d59eafb1bea795d9c2d /drivers/scsi/bnx2fc/bnx2fc_fcoe.c | |
parent | [SCSI] lpfc: Silence DEBUG_STRICT_USER_COPY_CHECKS=y warning (diff) | |
download | kernel-qcow2-linux-a4dc08cecfdb3172be61227324a4d2c5fe2de9e5.tar.gz kernel-qcow2-linux-a4dc08cecfdb3172be61227324a4d2c5fe2de9e5.tar.xz kernel-qcow2-linux-a4dc08cecfdb3172be61227324a4d2c5fe2de9e5.zip |
[SCSI] bnx2fc: host stats show the link speed 'unknown' on NIC partitioned interfaces
NIC partitioned interfaces reports the speed of 2500 which was not handled by
the driver.
Signed-off-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/bnx2fc/bnx2fc_fcoe.c')
-rw-r--r-- | drivers/scsi/bnx2fc/bnx2fc_fcoe.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c index ab255fbc7f36..8f894e410b5d 100644 --- a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c @@ -679,6 +679,9 @@ static void bnx2fc_link_speed_update(struct fc_lport *lport) case SPEED_1000: lport->link_speed = FC_PORTSPEED_1GBIT; break; + case SPEED_2500: + lport->link_speed = FC_PORTSPEED_2GBIT; + break; case SPEED_10000: lport->link_speed = FC_PORTSPEED_10GBIT; break; |