diff options
author | Aharon Landau <aharonl@mellanox.com> | 2020-09-17 12:02:23 +0300 |
---|---|---|
committer | Jason Gunthorpe <jgg@nvidia.com> | 2020-09-18 10:31:24 -0300 |
commit | 376ceb31ff879c2ee6b48eef841d6fa7720f6f43 (patch) | |
tree | 42d2a8b7033ba56e320054c4c77650da28c80ebf /drivers/infiniband/core/verbs.c | |
parent | e27014bdb47eb435f78573685f4196c07329f1f7 (diff) | |
download | linux-376ceb31ff879c2ee6b48eef841d6fa7720f6f43.tar.gz linux-376ceb31ff879c2ee6b48eef841d6fa7720f6f43.tar.bz2 linux-376ceb31ff879c2ee6b48eef841d6fa7720f6f43.zip |
RDMA: Fix link active_speed size
According to the IB spec active_speed size should be u16 and not u8 as
before. Changing it to allow further extensions in offered speeds.
Link: https://lore.kernel.org/r/20200917090223.1018224-4-leon@kernel.org
Signed-off-by: Aharon Landau <aharonl@mellanox.com>
Reviewed-by: Michael Guralnik <michaelgur@nvidia.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband/core/verbs.c')
-rw-r--r-- | drivers/infiniband/core/verbs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/verbs.c b/drivers/infiniband/core/verbs.c index 307886737646..f5f8959a4592 100644 --- a/drivers/infiniband/core/verbs.c +++ b/drivers/infiniband/core/verbs.c @@ -1781,7 +1781,7 @@ int ib_modify_qp_with_udata(struct ib_qp *ib_qp, struct ib_qp_attr *attr, } EXPORT_SYMBOL(ib_modify_qp_with_udata); -int ib_get_eth_speed(struct ib_device *dev, u8 port_num, u8 *speed, u8 *width) +int ib_get_eth_speed(struct ib_device *dev, u8 port_num, u16 *speed, u8 *width) { int rc; u32 netdev_speed; |