From: Bob Pearson <rpearsonhpe@gmail.com> To: jgg@nvidia.com, zyjzyj2000@gmail.com, linux-rdma@vger.kernel.org, bvanassche@acm.org, mie@igel.co.jp, rao.shoaib@oracle.com Cc: Bob Pearson <rpearsonhpe@gmail.com> Subject: [PATCH for-rc v4 5/5] RDMA/rxe: Only allow invalidate for appropriate MRs Date: Tue, 14 Sep 2021 11:42:07 -0500 [thread overview] Message-ID: <20210914164206.19768-6-rpearsonhpe@gmail.com> (raw) In-Reply-To: <20210914164206.19768-1-rpearsonhpe@gmail.com> Local and remote invalidate operations are not allowed by IBA for MRs created by (re)register memory verbs. This patch checks the MR type in rxe_invalidate_mr(). Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com> --- drivers/infiniband/sw/rxe/rxe_mr.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/infiniband/sw/rxe/rxe_mr.c b/drivers/infiniband/sw/rxe/rxe_mr.c index 8d658d42abed..53271df10e47 100644 --- a/drivers/infiniband/sw/rxe/rxe_mr.c +++ b/drivers/infiniband/sw/rxe/rxe_mr.c @@ -605,6 +605,12 @@ int rxe_invalidate_mr(struct rxe_qp *qp, u32 rkey) goto err_drop_ref; } + if (unlikely(mr->type != IB_MR_TYPE_MEM_REG)) { + pr_warn("%s: mr->type (%d) is wrong type\n", __func__, mr->type); + ret = -EINVAL; + goto err_drop_ref; + } + mr->state = RXE_MR_STATE_FREE; ret = 0; -- 2.30.2
next prev parent reply other threads:[~2021-09-14 16:43 UTC|newest] Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-09-14 16:42 [PATCH for-rc v4 0/5] RDMA/rxe: Various bug fixes Bob Pearson 2021-09-14 16:42 ` [PATCH for-rc v4 1/5] RDMA/rxe: Add memory barriers to kernel queues Bob Pearson 2021-09-14 16:42 ` [PATCH for-rc v4 2/5] RDMA/rxe: Cleanup MR status and type enums Bob Pearson 2021-09-14 16:42 ` [PATCH for-rc v4 3/5] RDMA/rxe: Separate HW and SW l/rkeys Bob Pearson 2021-09-14 16:42 ` [PATCH for-rc v4 4/5] RDMA/rxe: Create duplicate mapping tables for FMRs Bob Pearson 2021-09-14 16:42 ` Bob Pearson [this message] 2021-09-15 0:07 ` [PATCH for-rc v4 0/5] RDMA/rxe: Various bug fixes Shoaib Rao 2021-09-15 0:58 ` Bob Pearson 2021-09-18 2:13 ` Yi Zhang 2021-09-25 7:55 ` Yi Zhang 2021-09-25 20:32 ` Pearson, Robert B 2021-09-23 18:49 ` Olga Kornievskaia 2021-09-23 19:56 ` Jason Gunthorpe 2021-09-24 1:25 ` Bob Pearson 2021-09-24 13:54 ` Jason Gunthorpe 2021-09-24 15:44 ` Shoaib Rao
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210914164206.19768-6-rpearsonhpe@gmail.com \ --to=rpearsonhpe@gmail.com \ --cc=bvanassche@acm.org \ --cc=jgg@nvidia.com \ --cc=linux-rdma@vger.kernel.org \ --cc=mie@igel.co.jp \ --cc=rao.shoaib@oracle.com \ --cc=zyjzyj2000@gmail.com \ --subject='Re: [PATCH for-rc v4 5/5] RDMA/rxe: Only allow invalidate for appropriate MRs' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).