Commit bf0480a2 authored by Jason Gunthorpe's avatar Jason Gunthorpe

IB/cm: Remove dgid from the cm_id_priv av

It turns out this is only being used to store the LID for SIDR mode to
search the RB tree for request de-duplication. Store the LID value
directly and don't pretend it is a GID.

Link: https://lore.kernel.org/r/2e7c87b6f662c90c642fc1838e363ad3e6ef14a4.1623236345.git.leonro@nvidia.comReviewed-by: default avatarMark Zhang <markzhang@nvidia.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@nvidia.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent 6246f1cc
...@@ -216,7 +216,6 @@ struct cm_device { ...@@ -216,7 +216,6 @@ struct cm_device {
struct cm_av { struct cm_av {
struct cm_port *port; struct cm_port *port;
union ib_gid dgid;
struct rdma_ah_attr ah_attr; struct rdma_ah_attr ah_attr;
u16 pkey_index; u16 pkey_index;
u8 timeout; u8 timeout;
...@@ -249,6 +248,7 @@ struct cm_id_private { ...@@ -249,6 +248,7 @@ struct cm_id_private {
struct rb_node service_node; struct rb_node service_node;
struct rb_node sidr_id_node; struct rb_node sidr_id_node;
u32 sidr_slid;
spinlock_t lock; /* Do not acquire inside cm.lock */ spinlock_t lock; /* Do not acquire inside cm.lock */
struct completion comp; struct completion comp;
refcount_t refcount; refcount_t refcount;
...@@ -827,7 +827,6 @@ cm_insert_remote_sidr(struct cm_id_private *cm_id_priv) ...@@ -827,7 +827,6 @@ cm_insert_remote_sidr(struct cm_id_private *cm_id_priv)
struct rb_node **link = &cm.remote_sidr_table.rb_node; struct rb_node **link = &cm.remote_sidr_table.rb_node;
struct rb_node *parent = NULL; struct rb_node *parent = NULL;
struct cm_id_private *cur_cm_id_priv; struct cm_id_private *cur_cm_id_priv;
union ib_gid *port_gid = &cm_id_priv->av.dgid;
__be32 remote_id = cm_id_priv->id.remote_id; __be32 remote_id = cm_id_priv->id.remote_id;
while (*link) { while (*link) {
...@@ -839,12 +838,9 @@ cm_insert_remote_sidr(struct cm_id_private *cm_id_priv) ...@@ -839,12 +838,9 @@ cm_insert_remote_sidr(struct cm_id_private *cm_id_priv)
else if (be32_gt(remote_id, cur_cm_id_priv->id.remote_id)) else if (be32_gt(remote_id, cur_cm_id_priv->id.remote_id))
link = &(*link)->rb_right; link = &(*link)->rb_right;
else { else {
int cmp; if (cur_cm_id_priv->sidr_slid < cm_id_priv->sidr_slid)
cmp = memcmp(port_gid, &cur_cm_id_priv->av.dgid,
sizeof *port_gid);
if (cmp < 0)
link = &(*link)->rb_left; link = &(*link)->rb_left;
else if (cmp > 0) else if (cur_cm_id_priv->sidr_slid > cm_id_priv->sidr_slid)
link = &(*link)->rb_right; link = &(*link)->rb_right;
else else
return cur_cm_id_priv; return cur_cm_id_priv;
...@@ -3610,8 +3606,7 @@ static int cm_sidr_req_handler(struct cm_work *work) ...@@ -3610,8 +3606,7 @@ static int cm_sidr_req_handler(struct cm_work *work)
cm_id_priv->tid = sidr_req_msg->hdr.tid; cm_id_priv->tid = sidr_req_msg->hdr.tid;
wc = work->mad_recv_wc->wc; wc = work->mad_recv_wc->wc;
cm_id_priv->av.dgid.global.subnet_prefix = cpu_to_be64(wc->slid); cm_id_priv->sidr_slid = wc->slid;
cm_id_priv->av.dgid.global.interface_id = 0;
ret = cm_init_av_for_response(work->port, work->mad_recv_wc->wc, ret = cm_init_av_for_response(work->port, work->mad_recv_wc->wc,
work->mad_recv_wc->recv_buf.grh, work->mad_recv_wc->recv_buf.grh,
&cm_id_priv->av); &cm_id_priv->av);
......
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