]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 7 Jun 2022 09:45:53 +0000 (11:45 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 7 Jun 2022 09:45:53 +0000 (11:45 +0200)
added patches:
rdma-rxe-generate-a-completion-for-unsupported-invalid-opcode.patch

queue-5.10/rdma-rxe-generate-a-completion-for-unsupported-invalid-opcode.patch [new file with mode: 0644]
queue-5.10/series

diff --git a/queue-5.10/rdma-rxe-generate-a-completion-for-unsupported-invalid-opcode.patch b/queue-5.10/rdma-rxe-generate-a-completion-for-unsupported-invalid-opcode.patch
new file mode 100644 (file)
index 0000000..6802b14
--- /dev/null
@@ -0,0 +1,35 @@
+From 2f917af777011c88e977b9b9a5d00b280d3a59ce Mon Sep 17 00:00:00 2001
+From: Xiao Yang <yangx.jy@fujitsu.com>
+Date: Sun, 10 Apr 2022 19:35:13 +0800
+Subject: RDMA/rxe: Generate a completion for unsupported/invalid opcode
+
+From: Xiao Yang <yangx.jy@fujitsu.com>
+
+commit 2f917af777011c88e977b9b9a5d00b280d3a59ce upstream.
+
+Current rxe_requester() doesn't generate a completion when processing an
+unsupported/invalid opcode. If rxe driver doesn't support a new opcode
+(e.g. RDMA Atomic Write) and RDMA library supports it, an application
+using the new opcode can reproduce this issue. Fix the issue by calling
+"goto err;".
+
+Fixes: 8700e3e7c485 ("Soft RoCE driver")
+Link: https://lore.kernel.org/r/20220410113513.27537-1-yangx.jy@fujitsu.com
+Signed-off-by: Xiao Yang <yangx.jy@fujitsu.com>
+Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ drivers/infiniband/sw/rxe/rxe_req.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/drivers/infiniband/sw/rxe/rxe_req.c
++++ b/drivers/infiniband/sw/rxe/rxe_req.c
+@@ -650,7 +650,7 @@ next_wqe:
+       opcode = next_opcode(qp, wqe, wqe->wr.opcode);
+       if (unlikely(opcode < 0)) {
+               wqe->status = IB_WC_LOC_QP_OP_ERR;
+-              goto exit;
++              goto err;
+       }
+       mask = rxe_opcode[opcode].mask;
index 510bae2e3f98f5c23aa13c9e7d1de71707e697f6..b67a32040f46170f6ce8e97ed94a15855a28add7 100644 (file)
@@ -445,3 +445,4 @@ bfq-get-rid-of-__bio_blkcg-usage.patch
 bfq-make-sure-bfqg-for-which-we-are-queueing-requests-is-online.patch
 block-fix-bio_clone_blkg_association-to-associate-with-proper-blkcg_gq.patch
 revert-random-use-static-branch-for-crng_ready.patch
+rdma-rxe-generate-a-completion-for-unsupported-invalid-opcode.patch