diff options
author | Jason Gunthorpe <jgg@mellanox.com> | 2020-03-10 11:25:39 +0200 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2020-03-17 17:05:53 -0300 |
commit | d1de9a88074b66482443f0cd91618d7b51a7c9b6 (patch) | |
tree | 3f2ecbf7aa03f75eecc197777915dcb98b5aec49 /drivers/infiniband/core | |
parent | c206f8bad15d30f1e35821c21a2fb146e4668ebf (diff) | |
download | linux-d1de9a88074b66482443f0cd91618d7b51a7c9b6.tar.gz linux-d1de9a88074b66482443f0cd91618d7b51a7c9b6.tar.bz2 linux-d1de9a88074b66482443f0cd91618d7b51a7c9b6.zip |
RDMA/cm: Add missing locking around id.state in cm_dup_req_handler
All accesses to id.state must be done under the spinlock.
Fixes: a977049dacde ("[PATCH] IB: Add the kernel CM implementation")
Link: https://lore.kernel.org/r/20200310092545.251365-10-leon@kernel.org
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband/core')
-rw-r--r-- | drivers/infiniband/core/cm.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/infiniband/core/cm.c b/drivers/infiniband/core/cm.c index 3f125044d35e..3ce735527938 100644 --- a/drivers/infiniband/core/cm.c +++ b/drivers/infiniband/core/cm.c @@ -1872,8 +1872,12 @@ static void cm_dup_req_handler(struct cm_work *work, counter[CM_REQ_COUNTER]); /* Quick state check to discard duplicate REQs. */ - if (cm_id_priv->id.state == IB_CM_REQ_RCVD) + spin_lock_irq(&cm_id_priv->lock); + if (cm_id_priv->id.state == IB_CM_REQ_RCVD) { + spin_unlock_irq(&cm_id_priv->lock); return; + } + spin_unlock_irq(&cm_id_priv->lock); ret = cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg); if (ret) |