aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband
diff options
context:
space:
mode:
authorHonggang Li <honli@redhat.com>2018-03-15 17:02:13 +0800
committerJason Gunthorpe <jgg@mellanox.com>2018-03-19 11:39:47 -0600
commit311d0da97480d19d4ecd57f3ee264e3c232d78e5 (patch)
treebe681068f9dc2b6b211b0ebbc33d5f43e0bcf200 /drivers/infiniband
parentRDMA/restrack: Don't rely on uninitialized variable in restrack_add flow (diff)
downloadlinux-dev-311d0da97480d19d4ecd57f3ee264e3c232d78e5.tar.xz
linux-dev-311d0da97480d19d4ecd57f3ee264e3c232d78e5.zip
IB/core: Set speed string to SDR for invalid active rates
Before commit f1b65df5a232 ("IB/mlx5: Add support for active_width and active_speed in RoCE"), the mlx5_ib driver set default active_width and active_speed to IB_WIDTH_4X and IB_SPEED_QDR. Now, the active_width and active_speed are zeros if the RoCE port is in DOWN state. The speed string should be set to " SDR" instead of a blank string when active_speed is zero. Signed-off-by: Honggang Li <honli@redhat.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to '')
-rw-r--r--drivers/infiniband/core/sysfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c
index 8ae1308eecc7..cf36ff1f0068 100644
--- a/drivers/infiniband/core/sysfs.c
+++ b/drivers/infiniband/core/sysfs.c
@@ -273,6 +273,7 @@ static ssize_t rate_show(struct ib_port *p, struct port_attribute *unused,
break;
case IB_SPEED_SDR:
default: /* default to SDR for invalid rates */
+ speed = " SDR";
rate = 25;
break;
}