Commit 708ea056 authored by Parav Pandit's avatar Parav Pandit Committed by Jason Gunthorpe

IB/core: Avoid SGID attributes query while converting GID from OPA to IB

SGID attributes are not used during OPA to IB GID conversion.
Therefore don't query it.
Signed-off-by: default avatarParav Pandit <parav@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
Reviewed-by: default avatarYuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent b081808a
...@@ -1577,15 +1577,13 @@ static void cm_opa_to_ib_sgid(struct cm_work *work, ...@@ -1577,15 +1577,13 @@ static void cm_opa_to_ib_sgid(struct cm_work *work,
struct sa_path_rec *path) struct sa_path_rec *path)
{ {
struct ib_device *dev = work->port->cm_dev->ib_device; struct ib_device *dev = work->port->cm_dev->ib_device;
struct ib_gid_attr gid_attr;
u8 port_num = work->port->port_num; u8 port_num = work->port->port_num;
if (rdma_cap_opa_ah(dev, port_num) && if (rdma_cap_opa_ah(dev, port_num) &&
(ib_is_opa_gid(&path->sgid))) { (ib_is_opa_gid(&path->sgid))) {
union ib_gid sgid; union ib_gid sgid;
if (ib_get_cached_gid(dev, port_num, 0, if (ib_get_cached_gid(dev, port_num, 0, &sgid, NULL)) {
&sgid, &gid_attr)) {
dev_warn(&dev->dev, dev_warn(&dev->dev,
"Error updating sgid in CM request\n"); "Error updating sgid in CM request\n");
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment