From: Bob Pearson <rpearsonhpe@gmail.com> To: jgg@nvidia.com, zyjzyj2000@gmail.com, linux-rdma@vger.kernel.org, mie@igel.co.jp, bvanassche@acm.org Cc: Bob Pearson <rpearsonhpe@gmail.com> Subject: [PATCH for-rc v3 6/6] RDMA/rxe: Only allow invalidate for appropriate MRs Date: Thu, 9 Sep 2021 15:44:57 -0500 [thread overview] Message-ID: <20210909204456.7476-7-rpearsonhpe@gmail.com> (raw) In-Reply-To: <20210909204456.7476-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-09 20:46 UTC|newest] Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-09-09 20:44 [PATCH for-rc v3 0/6] RDMA/rxe: Various bug fixes Bob Pearson 2021-09-09 20:44 ` [PATCH for-rc v3 1/6] RDMA/rxe: Add memory barriers to kernel queues Bob Pearson 2021-09-10 1:19 ` Zhu Yanjun 2021-09-10 4:01 ` Bob Pearson 2021-09-14 6:04 ` 回复: " yangx.jy 2021-09-14 15:47 ` Bob Pearson 2021-09-09 20:44 ` [PATCH for-rc v3 2/6] RDMA/rxe: Fix memory allocation while locked Bob Pearson 2021-09-09 20:44 ` [PATCH for-rc v3 3/6] RDMA/rxe: Cleanup MR status and type enums Bob Pearson 2021-09-09 20:44 ` [PATCH for-rc v3 4/6] RDMA/rxe: Separate HW and SW l/rkeys Bob Pearson 2021-09-09 20:44 ` [PATCH for-rc v3 5/6] RDMA/rxe: Create duplicate mapping tables for FMRs Bob Pearson 2021-09-09 20:44 ` Bob Pearson [this message] 2021-09-09 21:52 ` [PATCH for-rc v3 0/6] RDMA/rxe: Various bug fixes Bart Van Assche 2021-09-10 19:38 ` Pearson, Robert B 2021-09-10 20:23 ` Bart Van Assche 2021-09-10 21:16 ` Bob Pearson 2021-09-10 21:47 ` Bob Pearson 2021-09-10 21:50 ` Bob Pearson 2021-09-10 22:07 ` Bart Van Assche 2021-09-12 14:41 ` Bob Pearson 2021-09-14 3:26 ` Bart Van Assche 2021-09-14 4:18 ` Bob Pearson 2021-09-12 14:42 ` Bob Pearson
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=20210909204456.7476-7-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=zyjzyj2000@gmail.com \ --subject='Re: [PATCH for-rc v3 6/6] 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).