From: Chuck Lever Date: Thu, 3 Aug 2017 18:30:36 +0000 (-0400) Subject: xprtrdma: Remove opcode check in Receive completion handler X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fdf503e302c5e6ec136703b25bde989a34f0f27f;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git xprtrdma: Remove opcode check in Receive completion handler Clean up: The opcode check is no longer necessary, because since commit 2fa8f88d8892 ("xprtrdma: Use new CQ API for RPC-over-RDMA client send CQs"), this completion handler is invoked only for RECV work requests. Signed-off-by: Chuck Lever Signed-off-by: Anna Schumaker --- diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c index f1b1c372f7fb..74dbba84ad38 100644 --- a/net/sunrpc/xprtrdma/verbs.c +++ b/net/sunrpc/xprtrdma/verbs.c @@ -173,9 +173,6 @@ rpcrdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc) goto out_fail; /* status == SUCCESS means all fields in wc are trustworthy */ - if (wc->opcode != IB_WC_RECV) - return; - dprintk("RPC: %s: rep %p opcode 'recv', length %u: success\n", __func__, rep, wc->byte_len);