blob: 515dd7a66a04a0f37d3eb9034045d773689d8c5c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Chuck Levera0ce85f2015-03-30 14:34:21 -04002/*
Chuck Leverce5b3712017-12-14 20:57:47 -05003 * Copyright (c) 2015, 2017 Oracle. All rights reserved.
Chuck Levera0ce85f2015-03-30 14:34:21 -04004 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
5 */
6
7/* Lightweight memory registration using Fast Registration Work
Chuck Leverce5b3712017-12-14 20:57:47 -05008 * Requests (FRWR).
Chuck Levera0ce85f2015-03-30 14:34:21 -04009 *
Chuck Lever2fb2a4d2019-08-19 18:37:52 -040010 * FRWR features ordered asynchronous registration and invalidation
11 * of arbitrarily-sized memory regions. This is the fastest and safest
Chuck Levera0ce85f2015-03-30 14:34:21 -040012 * but most complex memory registration mode.
13 */
14
Chuck Leverc14d86e2015-05-26 11:52:35 -040015/* Normal operation
16 *
Chuck Lever2fb2a4d2019-08-19 18:37:52 -040017 * A Memory Region is prepared for RDMA Read or Write using a FAST_REG
Chuck Lever5f624122018-12-19 10:59:01 -050018 * Work Request (frwr_map). When the RDMA operation is finished, this
Chuck Leverc14d86e2015-05-26 11:52:35 -040019 * Memory Region is invalidated using a LOCAL_INV Work Request
Chuck Lever2fb2a4d2019-08-19 18:37:52 -040020 * (frwr_unmap_async and frwr_unmap_sync).
Chuck Leverc14d86e2015-05-26 11:52:35 -040021 *
Chuck Lever2fb2a4d2019-08-19 18:37:52 -040022 * Typically FAST_REG Work Requests are not signaled, and neither are
23 * RDMA Send Work Requests (with the exception of signaling occasionally
24 * to prevent provider work queue overflows). This greatly reduces HCA
Chuck Leverc14d86e2015-05-26 11:52:35 -040025 * interrupt workload.
Chuck Leverc14d86e2015-05-26 11:52:35 -040026 */
27
28/* Transport recovery
29 *
Chuck Lever2fb2a4d2019-08-19 18:37:52 -040030 * frwr_map and frwr_unmap_* cannot run at the same time the transport
31 * connect worker is running. The connect worker holds the transport
32 * send lock, just as ->send_request does. This prevents frwr_map and
33 * the connect worker from running concurrently. When a connection is
34 * closed, the Receive completion queue is drained before the allowing
35 * the connect worker to get control. This prevents frwr_unmap and the
36 * connect worker from running concurrently.
Chuck Leverc14d86e2015-05-26 11:52:35 -040037 *
Chuck Lever2fb2a4d2019-08-19 18:37:52 -040038 * When the underlying transport disconnects, MRs that are in flight
Chuck Lever9d2da4f2019-10-09 13:07:48 -040039 * are flushed and are likely unusable. Thus all MRs are destroyed.
40 * New MRs are created on demand.
Chuck Leverc14d86e2015-05-26 11:52:35 -040041 */
42
Chuck Leverbd2abef2018-05-07 15:27:16 -040043#include <linux/sunrpc/svc_rdma.h>
Chuck Leverc8b920b2016-09-15 10:57:16 -040044
Chuck Levera0ce85f2015-03-30 14:34:21 -040045#include "xprt_rdma.h"
Chuck Leverb6e717cb2018-05-07 15:27:05 -040046#include <trace/events/rpcrdma.h>
Chuck Levera0ce85f2015-03-30 14:34:21 -040047
Chuck Lever0a26d102021-04-19 14:03:56 -040048static void frwr_cid_init(struct rpcrdma_ep *ep,
49 struct rpcrdma_mr *mr)
50{
51 struct rpc_rdma_cid *cid = &mr->mr_cid;
52
53 cid->ci_queue_id = ep->re_attr.send_cq->res.id;
Chuck Lever13bcf7e2021-04-19 14:04:21 -040054 cid->ci_completion_id = mr->mr_ibmr->res.id;
Chuck Lever0a26d102021-04-19 14:03:56 -040055}
56
Chuck Leveref2be592020-11-09 14:40:14 -050057static void frwr_mr_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr *mr)
Chuck Lever61da8862018-10-01 14:25:25 -040058{
Chuck Lever7a03aeb62020-11-09 14:40:19 -050059 if (mr->mr_device) {
Chuck Leverd379eaa2018-10-01 14:25:30 -040060 trace_xprtrdma_mr_unmap(mr);
Chuck Lever7a03aeb62020-11-09 14:40:19 -050061 ib_dma_unmap_sg(mr->mr_device, mr->mr_sg, mr->mr_nents,
62 mr->mr_dir);
63 mr->mr_device = NULL;
Chuck Lever61da8862018-10-01 14:25:25 -040064 }
Chuck Leveref2be592020-11-09 14:40:14 -050065}
66
Chuck Levere4b52ca2021-04-19 14:03:12 -040067/**
68 * frwr_mr_release - Destroy one MR
69 * @mr: MR allocated by frwr_mr_init
70 *
71 */
72void frwr_mr_release(struct rpcrdma_mr *mr)
Chuck Leveref2be592020-11-09 14:40:14 -050073{
Chuck Levere4b52ca2021-04-19 14:03:12 -040074 int rc;
Chuck Leveref2be592020-11-09 14:40:14 -050075
Chuck Levere4b52ca2021-04-19 14:03:12 -040076 frwr_mr_unmap(mr->mr_xprt, mr);
Chuck Leveref2be592020-11-09 14:40:14 -050077
Chuck Lever13bcf7e2021-04-19 14:04:21 -040078 rc = ib_dereg_mr(mr->mr_ibmr);
Chuck Levere4b52ca2021-04-19 14:03:12 -040079 if (rc)
80 trace_xprtrdma_frwr_dereg(mr, rc);
81 kfree(mr->mr_sg);
82 kfree(mr);
Chuck Lever61da8862018-10-01 14:25:25 -040083}
84
Chuck Leveref2be592020-11-09 14:40:14 -050085static void frwr_mr_put(struct rpcrdma_mr *mr)
86{
87 frwr_mr_unmap(mr->mr_xprt, mr);
88
89 /* The MR is returned to the req's MR free list instead
90 * of to the xprt's MR free list. No spinlock is needed.
91 */
92 rpcrdma_mr_push(mr, &mr->mr_req->rl_free_mrs);
93}
94
Chuck Lever40088f02019-06-19 10:33:04 -040095/* frwr_reset - Place MRs back on the free list
96 * @req: request to reset
97 *
98 * Used after a failed marshal. For FRWR, this means the MRs
99 * don't have to be fully released and recreated.
100 *
101 * NB: This is safe only as long as none of @req's MRs are
102 * involved with an ongoing asynchronous FAST_REG or LOCAL_INV
103 * Work Request.
104 */
105void frwr_reset(struct rpcrdma_req *req)
106{
Chuck Lever265a38d2019-08-19 18:44:04 -0400107 struct rpcrdma_mr *mr;
Chuck Lever40088f02019-06-19 10:33:04 -0400108
Chuck Lever265a38d2019-08-19 18:44:04 -0400109 while ((mr = rpcrdma_mr_pop(&req->rl_registered)))
Chuck Leveref2be592020-11-09 14:40:14 -0500110 frwr_mr_put(mr);
Chuck Lever40088f02019-06-19 10:33:04 -0400111}
112
Chuck Lever5f624122018-12-19 10:59:01 -0500113/**
Chuck Lever253a5162020-02-21 17:00:17 -0500114 * frwr_mr_init - Initialize one MR
115 * @r_xprt: controlling transport instance
Chuck Lever5f624122018-12-19 10:59:01 -0500116 * @mr: generic MR to prepare for FRWR
117 *
118 * Returns zero if successful. Otherwise a negative errno
119 * is returned.
120 */
Chuck Lever253a5162020-02-21 17:00:17 -0500121int frwr_mr_init(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr *mr)
Chuck Leverd48b1d22016-06-29 13:52:29 -0400122{
Chuck Levere28ce902020-02-21 17:01:05 -0500123 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500124 unsigned int depth = ep->re_max_fr_depth;
Chuck Leverf85adb12018-12-19 11:00:48 -0500125 struct scatterlist *sg;
126 struct ib_mr *frmr;
Chuck Leverd48b1d22016-06-29 13:52:29 -0400127 int rc;
128
Chuck Lever93aa8e02020-02-21 17:00:54 -0500129 frmr = ib_alloc_mr(ep->re_pd, ep->re_mrtype, depth);
Chuck Leverf85adb12018-12-19 11:00:48 -0500130 if (IS_ERR(frmr))
Chuck Leverd48b1d22016-06-29 13:52:29 -0400131 goto out_mr_err;
132
Julia Lawalled38c332020-09-20 13:26:20 +0200133 sg = kmalloc_array(depth, sizeof(*sg), GFP_NOFS);
Chuck Leverf85adb12018-12-19 11:00:48 -0500134 if (!sg)
Chuck Leverd48b1d22016-06-29 13:52:29 -0400135 goto out_list_err;
136
Chuck Lever253a5162020-02-21 17:00:17 -0500137 mr->mr_xprt = r_xprt;
Chuck Lever13bcf7e2021-04-19 14:04:21 -0400138 mr->mr_ibmr = frmr;
Chuck Lever7a03aeb62020-11-09 14:40:19 -0500139 mr->mr_device = NULL;
Chuck Lever054f1552018-05-01 11:37:14 -0400140 INIT_LIST_HEAD(&mr->mr_list);
Chuck Lever9a301ca2021-04-19 14:04:09 -0400141 init_completion(&mr->mr_linv_done);
Chuck Lever0a26d102021-04-19 14:03:56 -0400142 frwr_cid_init(ep, mr);
Chuck Leverf85adb12018-12-19 11:00:48 -0500143
144 sg_init_table(sg, depth);
145 mr->mr_sg = sg;
Chuck Leverd48b1d22016-06-29 13:52:29 -0400146 return 0;
147
148out_mr_err:
Chuck Leverf85adb12018-12-19 11:00:48 -0500149 rc = PTR_ERR(frmr);
Chuck Lever53b2c1c2018-12-19 11:00:06 -0500150 trace_xprtrdma_frwr_alloc(mr, rc);
Chuck Leverd48b1d22016-06-29 13:52:29 -0400151 return rc;
152
153out_list_err:
Chuck Leverf85adb12018-12-19 11:00:48 -0500154 ib_dereg_mr(frmr);
155 return -ENOMEM;
Chuck Leverd48b1d22016-06-29 13:52:29 -0400156}
157
Chuck Lever5f624122018-12-19 10:59:01 -0500158/**
Chuck Lever25868e62020-01-03 11:56:48 -0500159 * frwr_query_device - Prepare a transport for use with FRWR
Chuck Lever93aa8e02020-02-21 17:00:54 -0500160 * @ep: endpoint to fill in
Chuck Lever25868e62020-01-03 11:56:48 -0500161 * @device: RDMA device to query
Chuck Lever5f624122018-12-19 10:59:01 -0500162 *
163 * On success, sets:
Chuck Lever93aa8e02020-02-21 17:00:54 -0500164 * ep->re_attr
165 * ep->re_max_requests
166 * ep->re_max_rdma_segs
167 * ep->re_max_fr_depth
168 * ep->re_mrtype
Chuck Lever5f624122018-12-19 10:59:01 -0500169 *
Chuck Lever25868e62020-01-03 11:56:48 -0500170 * Return values:
171 * On success, returns zero.
172 * %-EINVAL - the device does not support FRWR memory registration
173 * %-ENOMEM - the device is not sufficiently capable for NFS/RDMA
Chuck Lever914fcad2018-05-04 15:34:48 -0400174 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500175int frwr_query_device(struct rpcrdma_ep *ep, const struct ib_device *device)
Chuck Lever3968cb52015-03-30 14:35:26 -0400176{
Chuck Lever25868e62020-01-03 11:56:48 -0500177 const struct ib_device_attr *attrs = &device->attrs;
Chuck Lever914fcad2018-05-04 15:34:48 -0400178 int max_qp_wr, depth, delta;
Chuck Lever2e870362020-01-03 11:56:27 -0500179 unsigned int max_sge;
180
Chuck Lever25868e62020-01-03 11:56:48 -0500181 if (!(attrs->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) ||
182 attrs->max_fast_reg_page_list_len == 0) {
183 pr_err("rpcrdma: 'frwr' mode is not supported by device %s\n",
184 device->name);
185 return -EINVAL;
186 }
187
Chuck Lever2e870362020-01-03 11:56:27 -0500188 max_sge = min_t(unsigned int, attrs->max_send_sge,
189 RPCRDMA_MAX_SEND_SGES);
190 if (max_sge < RPCRDMA_MIN_SEND_SGES) {
191 pr_err("rpcrdma: HCA provides only %u send SGEs\n", max_sge);
192 return -ENOMEM;
193 }
Chuck Lever93aa8e02020-02-21 17:00:54 -0500194 ep->re_attr.cap.max_send_sge = max_sge;
195 ep->re_attr.cap.max_recv_sge = 1;
Chuck Lever3968cb52015-03-30 14:35:26 -0400196
Chuck Lever93aa8e02020-02-21 17:00:54 -0500197 ep->re_mrtype = IB_MR_TYPE_MEM_REG;
Chuck Lever5e9fc6a2016-11-29 10:52:24 -0500198 if (attrs->device_cap_flags & IB_DEVICE_SG_GAPS_REG)
Chuck Lever93aa8e02020-02-21 17:00:54 -0500199 ep->re_mrtype = IB_MR_TYPE_SG_GAPS;
Chuck Lever5e9fc6a2016-11-29 10:52:24 -0500200
Chuck Levera7886842018-12-19 10:58:51 -0500201 /* Quirk: Some devices advertise a large max_fast_reg_page_list_len
202 * capability, but perform optimally when the MRs are not larger
203 * than a page.
204 */
Chuck Lever18d065a2020-01-03 11:56:43 -0500205 if (attrs->max_sge_rd > RPCRDMA_MAX_HDR_SEGS)
Chuck Lever93aa8e02020-02-21 17:00:54 -0500206 ep->re_max_fr_depth = attrs->max_sge_rd;
Chuck Levera7886842018-12-19 10:58:51 -0500207 else
Chuck Lever93aa8e02020-02-21 17:00:54 -0500208 ep->re_max_fr_depth = attrs->max_fast_reg_page_list_len;
209 if (ep->re_max_fr_depth > RPCRDMA_MAX_DATA_SEGS)
210 ep->re_max_fr_depth = RPCRDMA_MAX_DATA_SEGS;
Chuck Lever3968cb52015-03-30 14:35:26 -0400211
Chuck Leverce5b3712017-12-14 20:57:47 -0500212 /* Add room for frwr register and invalidate WRs.
213 * 1. FRWR reg WR for head
214 * 2. FRWR invalidate WR for head
215 * 3. N FRWR reg WRs for pagelist
216 * 4. N FRWR invalidate WRs for pagelist
217 * 5. FRWR reg WR for tail
218 * 6. FRWR invalidate WR for tail
Chuck Lever3968cb52015-03-30 14:35:26 -0400219 * 7. The RDMA_SEND WR
220 */
221 depth = 7;
222
Chuck Leverce5b3712017-12-14 20:57:47 -0500223 /* Calculate N if the device max FRWR depth is smaller than
Chuck Lever3968cb52015-03-30 14:35:26 -0400224 * RPCRDMA_MAX_DATA_SEGS.
225 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500226 if (ep->re_max_fr_depth < RPCRDMA_MAX_DATA_SEGS) {
227 delta = RPCRDMA_MAX_DATA_SEGS - ep->re_max_fr_depth;
Chuck Lever3968cb52015-03-30 14:35:26 -0400228 do {
Chuck Leverce5b3712017-12-14 20:57:47 -0500229 depth += 2; /* FRWR reg + invalidate */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500230 delta -= ep->re_max_fr_depth;
Chuck Lever3968cb52015-03-30 14:35:26 -0400231 } while (delta > 0);
232 }
233
Chuck Lever25868e62020-01-03 11:56:48 -0500234 max_qp_wr = attrs->max_qp_wr;
Chuck Lever914fcad2018-05-04 15:34:48 -0400235 max_qp_wr -= RPCRDMA_BACKWARD_WRS;
236 max_qp_wr -= 1;
237 if (max_qp_wr < RPCRDMA_MIN_SLOT_TABLE)
238 return -ENOMEM;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500239 if (ep->re_max_requests > max_qp_wr)
240 ep->re_max_requests = max_qp_wr;
241 ep->re_attr.cap.max_send_wr = ep->re_max_requests * depth;
242 if (ep->re_attr.cap.max_send_wr > max_qp_wr) {
243 ep->re_max_requests = max_qp_wr / depth;
244 if (!ep->re_max_requests)
Chuck Lever25868e62020-01-03 11:56:48 -0500245 return -ENOMEM;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500246 ep->re_attr.cap.max_send_wr = ep->re_max_requests * depth;
Chuck Lever3968cb52015-03-30 14:35:26 -0400247 }
Chuck Lever93aa8e02020-02-21 17:00:54 -0500248 ep->re_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
249 ep->re_attr.cap.max_send_wr += 1; /* for ib_drain_sq */
250 ep->re_attr.cap.max_recv_wr = ep->re_max_requests;
251 ep->re_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
Chuck Lever32e6b682021-04-19 14:02:03 -0400252 ep->re_attr.cap.max_recv_wr += RPCRDMA_MAX_RECV_BATCH;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500253 ep->re_attr.cap.max_recv_wr += 1; /* for ib_drain_rq */
Chuck Lever3968cb52015-03-30 14:35:26 -0400254
Chuck Lever93aa8e02020-02-21 17:00:54 -0500255 ep->re_max_rdma_segs =
256 DIV_ROUND_UP(RPCRDMA_MAX_DATA_SEGS, ep->re_max_fr_depth);
Chuck Lever6946f822018-12-19 10:58:45 -0500257 /* Reply chunks require segments for head and tail buffers */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500258 ep->re_max_rdma_segs += 2;
259 if (ep->re_max_rdma_segs > RPCRDMA_MAX_HDR_SEGS)
260 ep->re_max_rdma_segs = RPCRDMA_MAX_HDR_SEGS;
Chuck Lever18d065a2020-01-03 11:56:43 -0500261
262 /* Ensure the underlying device is capable of conveying the
263 * largest r/wsize NFS will ask for. This guarantees that
264 * failing over from one RDMA device to another will not
265 * break NFS I/O.
266 */
Chuck Lever93aa8e02020-02-21 17:00:54 -0500267 if ((ep->re_max_rdma_segs * ep->re_max_fr_depth) < RPCRDMA_MAX_SEGS)
Chuck Lever18d065a2020-01-03 11:56:43 -0500268 return -ENOMEM;
269
Chuck Lever3968cb52015-03-30 14:35:26 -0400270 return 0;
271}
272
Chuck Lever5f624122018-12-19 10:59:01 -0500273/**
Chuck Lever5f624122018-12-19 10:59:01 -0500274 * frwr_map - Register a memory region
275 * @r_xprt: controlling transport
276 * @seg: memory region co-ordinates
277 * @nsegs: number of segments remaining
278 * @writing: true when RDMA Write will be used
Chuck Lever0a93fbc2018-12-19 10:59:07 -0500279 * @xid: XID of RPC using the registered memory
Chuck Lever3b39f522019-08-19 18:45:37 -0400280 * @mr: MR to fill in
Chuck Lever5f624122018-12-19 10:59:01 -0500281 *
282 * Prepare a REG_MR Work Request to register a memory region
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400283 * for remote access via RDMA READ or RDMA WRITE.
Chuck Lever5f624122018-12-19 10:59:01 -0500284 *
285 * Returns the next segment or a negative errno pointer.
Chuck Lever3b39f522019-08-19 18:45:37 -0400286 * On success, @mr is filled in.
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400287 */
Chuck Lever5f624122018-12-19 10:59:01 -0500288struct rpcrdma_mr_seg *frwr_map(struct rpcrdma_xprt *r_xprt,
289 struct rpcrdma_mr_seg *seg,
Chuck Leverec482cc2019-02-11 11:23:44 -0500290 int nsegs, bool writing, __be32 xid,
Chuck Lever3b39f522019-08-19 18:45:37 -0400291 struct rpcrdma_mr *mr)
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400292{
Chuck Levere28ce902020-02-21 17:01:05 -0500293 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Lever3cf4e162015-12-16 17:22:31 -0500294 struct ib_reg_wr *reg_wr;
Chuck Leverca1c6712020-02-12 11:12:30 -0500295 int i, n, dma_nents;
Chuck Lever3b39f522019-08-19 18:45:37 -0400296 struct ib_mr *ibmr;
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400297 u8 key;
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400298
Chuck Lever93aa8e02020-02-21 17:00:54 -0500299 if (nsegs > ep->re_max_fr_depth)
300 nsegs = ep->re_max_fr_depth;
Sagi Grimberg4143f342015-10-13 19:11:35 +0300301 for (i = 0; i < nsegs;) {
Chuck Lever67b16622021-02-04 11:59:13 -0500302 sg_set_page(&mr->mr_sg[i], seg->mr_page,
303 seg->mr_len, seg->mr_offset);
Sagi Grimberg4143f342015-10-13 19:11:35 +0300304
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400305 ++seg;
306 ++i;
Chuck Lever93aa8e02020-02-21 17:00:54 -0500307 if (ep->re_mrtype == IB_MR_TYPE_SG_GAPS)
Chuck Lever5e9fc6a2016-11-29 10:52:24 -0500308 continue;
Chuck Lever67b16622021-02-04 11:59:13 -0500309 if ((i < nsegs && seg->mr_offset) ||
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400310 offset_in_page((seg-1)->mr_offset + (seg-1)->mr_len))
311 break;
312 }
Chuck Lever96cedde2017-12-14 20:57:55 -0500313 mr->mr_dir = rpcrdma_data_dir(writing);
Chuck Leverca1c6712020-02-12 11:12:30 -0500314 mr->mr_nents = i;
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400315
Chuck Lever93aa8e02020-02-21 17:00:54 -0500316 dma_nents = ib_dma_map_sg(ep->re_id->device, mr->mr_sg, mr->mr_nents,
Chuck Leverca1c6712020-02-12 11:12:30 -0500317 mr->mr_dir);
318 if (!dma_nents)
Chuck Lever564471d2016-06-29 13:52:21 -0400319 goto out_dmamap_err;
Chuck Lever7a03aeb62020-11-09 14:40:19 -0500320 mr->mr_device = ep->re_id->device;
Sagi Grimberg4143f342015-10-13 19:11:35 +0300321
Chuck Lever13bcf7e2021-04-19 14:04:21 -0400322 ibmr = mr->mr_ibmr;
Chuck Leverca1c6712020-02-12 11:12:30 -0500323 n = ib_map_mr_sg(ibmr, mr->mr_sg, dma_nents, NULL, PAGE_SIZE);
324 if (n != dma_nents)
Chuck Lever564471d2016-06-29 13:52:21 -0400325 goto out_mapmr_err;
Sagi Grimberg4143f342015-10-13 19:11:35 +0300326
Chuck Lever0a93fbc2018-12-19 10:59:07 -0500327 ibmr->iova &= 0x00000000ffffffff;
Chuck Leverec482cc2019-02-11 11:23:44 -0500328 ibmr->iova |= ((u64)be32_to_cpu(xid)) << 32;
Chuck Lever96cedde2017-12-14 20:57:55 -0500329 key = (u8)(ibmr->rkey & 0x000000FF);
330 ib_update_fast_reg_key(ibmr, ++key);
Sagi Grimberg4143f342015-10-13 19:11:35 +0300331
Chuck Leverdcff9ed2021-04-19 14:04:15 -0400332 reg_wr = &mr->mr_regwr;
Chuck Lever96cedde2017-12-14 20:57:55 -0500333 reg_wr->mr = ibmr;
334 reg_wr->key = ibmr->rkey;
Chuck Lever3cf4e162015-12-16 17:22:31 -0500335 reg_wr->access = writing ?
336 IB_ACCESS_REMOTE_WRITE | IB_ACCESS_LOCAL_WRITE :
337 IB_ACCESS_REMOTE_READ;
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400338
Chuck Lever96cedde2017-12-14 20:57:55 -0500339 mr->mr_handle = ibmr->rkey;
340 mr->mr_length = ibmr->length;
341 mr->mr_offset = ibmr->iova;
Chuck Leverba217ec2018-12-19 10:59:55 -0500342 trace_xprtrdma_mr_map(mr);
Sagi Grimberg4143f342015-10-13 19:11:35 +0300343
Chuck Lever6748b0ca2017-08-14 15:38:30 -0400344 return seg;
Chuck Lever564471d2016-06-29 13:52:21 -0400345
346out_dmamap_err:
Chuck Lever53b2c1c2018-12-19 11:00:06 -0500347 trace_xprtrdma_frwr_sgerr(mr, i);
Chuck Lever6748b0ca2017-08-14 15:38:30 -0400348 return ERR_PTR(-EIO);
Chuck Lever564471d2016-06-29 13:52:21 -0400349
350out_mapmr_err:
Chuck Lever53b2c1c2018-12-19 11:00:06 -0500351 trace_xprtrdma_frwr_maperr(mr, n);
Chuck Lever6748b0ca2017-08-14 15:38:30 -0400352 return ERR_PTR(-EIO);
Chuck Leverf2877622018-02-28 15:30:59 -0500353}
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400354
Chuck Lever5f624122018-12-19 10:59:01 -0500355/**
Chuck Lever84756892019-06-19 10:32:59 -0400356 * frwr_wc_fastreg - Invoked by RDMA provider for a flushed FastReg WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500357 * @cq: completion queue
358 * @wc: WCE for a completed FastReg WR
Chuck Lever84756892019-06-19 10:32:59 -0400359 *
Chuck Levere4b52ca2021-04-19 14:03:12 -0400360 * Each flushed MR gets destroyed after the QP has drained.
Chuck Lever84756892019-06-19 10:32:59 -0400361 */
362static void frwr_wc_fastreg(struct ib_cq *cq, struct ib_wc *wc)
363{
364 struct ib_cqe *cqe = wc->wr_cqe;
Chuck Levere10fa962021-04-19 14:04:03 -0400365 struct rpcrdma_mr *mr = container_of(cqe, struct rpcrdma_mr, mr_cqe);
Chuck Lever84756892019-06-19 10:32:59 -0400366
367 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Lever0a26d102021-04-19 14:03:56 -0400368 trace_xprtrdma_wc_fastreg(wc, &mr->mr_cid);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500369
Chuck Leverf423f752020-06-15 09:21:02 -0400370 rpcrdma_flush_disconnect(cq->cq_context, wc);
Chuck Lever84756892019-06-19 10:32:59 -0400371}
372
373/**
Chuck Lever97d0de82020-02-21 17:00:23 -0500374 * frwr_send - post Send WRs containing the RPC Call message
375 * @r_xprt: controlling transport instance
376 * @req: prepared RPC Call
Chuck Leverf2877622018-02-28 15:30:59 -0500377 *
Chuck Levere0f86bc2018-12-19 11:00:27 -0500378 * For FRWR, chain any FastReg WRs to the Send WR. Only a
Chuck Leverf2877622018-02-28 15:30:59 -0500379 * single ib_post_send call is needed to register memory
380 * and then post the Send WR.
Chuck Lever5f624122018-12-19 10:59:01 -0500381 *
Chuck Lever97d0de82020-02-21 17:00:23 -0500382 * Returns the return code from ib_post_send.
383 *
384 * Caller must hold the transport send lock to ensure that the
385 * pointers to the transport's rdma_cm_id and QP are stable.
Chuck Leverf2877622018-02-28 15:30:59 -0500386 */
Chuck Lever97d0de82020-02-21 17:00:23 -0500387int frwr_send(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
Chuck Leverf2877622018-02-28 15:30:59 -0500388{
Chuck Leverb3ce7a22021-04-19 14:03:25 -0400389 struct ib_send_wr *post_wr, *send_wr = &req->rl_wr;
Chuck Lever5ecef9c2020-11-09 14:39:31 -0500390 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Leverf2877622018-02-28 15:30:59 -0500391 struct rpcrdma_mr *mr;
Chuck Leverb3ce7a22021-04-19 14:03:25 -0400392 unsigned int num_wrs;
Chuck Leverd9ae8132021-08-02 14:44:36 -0400393 int ret;
Chuck Leverf2877622018-02-28 15:30:59 -0500394
Chuck Leverb3ce7a22021-04-19 14:03:25 -0400395 num_wrs = 1;
396 post_wr = send_wr;
Chuck Leverf2877622018-02-28 15:30:59 -0500397 list_for_each_entry(mr, &req->rl_registered, mr_list) {
Chuck Lever4ddd0fc2021-04-19 14:03:31 -0400398 trace_xprtrdma_mr_fastreg(mr);
Chuck Leverf2877622018-02-28 15:30:59 -0500399
Chuck Levere10fa962021-04-19 14:04:03 -0400400 mr->mr_cqe.done = frwr_wc_fastreg;
Chuck Leverdcff9ed2021-04-19 14:04:15 -0400401 mr->mr_regwr.wr.next = post_wr;
402 mr->mr_regwr.wr.wr_cqe = &mr->mr_cqe;
403 mr->mr_regwr.wr.num_sge = 0;
404 mr->mr_regwr.wr.opcode = IB_WR_REG_MR;
405 mr->mr_regwr.wr.send_flags = 0;
406 post_wr = &mr->mr_regwr.wr;
Chuck Leverb3ce7a22021-04-19 14:03:25 -0400407 ++num_wrs;
Chuck Leverf2877622018-02-28 15:30:59 -0500408 }
409
Chuck Leverb3ce7a22021-04-19 14:03:25 -0400410 if ((kref_read(&req->rl_kref) > 1) || num_wrs > ep->re_send_count) {
411 send_wr->send_flags |= IB_SEND_SIGNALED;
412 ep->re_send_count = min_t(unsigned int, ep->re_send_batch,
413 num_wrs - ep->re_send_count);
414 } else {
415 send_wr->send_flags &= ~IB_SEND_SIGNALED;
416 ep->re_send_count -= num_wrs;
417 }
418
419 trace_xprtrdma_post_send(req);
Chuck Leverd9ae8132021-08-02 14:44:36 -0400420 ret = ib_post_send(ep->re_id->qp, post_wr, NULL);
421 if (ret)
422 trace_xprtrdma_post_send_err(r_xprt, req, ret);
423 return ret;
Chuck Lever9c1b4d72015-03-30 14:34:39 -0400424}
425
Chuck Lever5f624122018-12-19 10:59:01 -0500426/**
427 * frwr_reminv - handle a remotely invalidated mr on the @mrs list
428 * @rep: Received reply
429 * @mrs: list of MRs to check
430 *
Chuck Leverc3441612017-12-14 20:56:26 -0500431 */
Chuck Lever5f624122018-12-19 10:59:01 -0500432void frwr_reminv(struct rpcrdma_rep *rep, struct list_head *mrs)
Chuck Leverc3441612017-12-14 20:56:26 -0500433{
Chuck Lever96cedde2017-12-14 20:57:55 -0500434 struct rpcrdma_mr *mr;
Chuck Leverc3441612017-12-14 20:56:26 -0500435
Chuck Lever96cedde2017-12-14 20:57:55 -0500436 list_for_each_entry(mr, mrs, mr_list)
437 if (mr->mr_handle == rep->rr_inv_rkey) {
Chuck Lever054f1552018-05-01 11:37:14 -0400438 list_del_init(&mr->mr_list);
Chuck Lever4ddd0fc2021-04-19 14:03:31 -0400439 trace_xprtrdma_mr_reminv(mr);
Chuck Leveref2be592020-11-09 14:40:14 -0500440 frwr_mr_put(mr);
Chuck Leverc3441612017-12-14 20:56:26 -0500441 break; /* only one invalidated MR per RPC */
442 }
443}
444
Chuck Leveref2be592020-11-09 14:40:14 -0500445static void frwr_mr_done(struct ib_wc *wc, struct rpcrdma_mr *mr)
Chuck Lever84756892019-06-19 10:32:59 -0400446{
Chuck Levere4b52ca2021-04-19 14:03:12 -0400447 if (likely(wc->status == IB_WC_SUCCESS))
Chuck Leveref2be592020-11-09 14:40:14 -0500448 frwr_mr_put(mr);
Chuck Lever84756892019-06-19 10:32:59 -0400449}
450
451/**
452 * frwr_wc_localinv - Invoked by RDMA provider for a LOCAL_INV WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500453 * @cq: completion queue
454 * @wc: WCE for a completed LocalInv WR
Chuck Lever84756892019-06-19 10:32:59 -0400455 *
456 */
457static void frwr_wc_localinv(struct ib_cq *cq, struct ib_wc *wc)
458{
459 struct ib_cqe *cqe = wc->wr_cqe;
Chuck Levere10fa962021-04-19 14:04:03 -0400460 struct rpcrdma_mr *mr = container_of(cqe, struct rpcrdma_mr, mr_cqe);
Chuck Lever84756892019-06-19 10:32:59 -0400461
462 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Lever0a26d102021-04-19 14:03:56 -0400463 trace_xprtrdma_wc_li(wc, &mr->mr_cid);
Chuck Leveref2be592020-11-09 14:40:14 -0500464 frwr_mr_done(wc, mr);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500465
Chuck Leverf423f752020-06-15 09:21:02 -0400466 rpcrdma_flush_disconnect(cq->cq_context, wc);
Chuck Lever84756892019-06-19 10:32:59 -0400467}
468
469/**
470 * frwr_wc_localinv_wake - Invoked by RDMA provider for a LOCAL_INV WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500471 * @cq: completion queue
472 * @wc: WCE for a completed LocalInv WR
Chuck Lever84756892019-06-19 10:32:59 -0400473 *
474 * Awaken anyone waiting for an MR to finish being fenced.
475 */
476static void frwr_wc_localinv_wake(struct ib_cq *cq, struct ib_wc *wc)
477{
478 struct ib_cqe *cqe = wc->wr_cqe;
Chuck Levere10fa962021-04-19 14:04:03 -0400479 struct rpcrdma_mr *mr = container_of(cqe, struct rpcrdma_mr, mr_cqe);
Chuck Lever84756892019-06-19 10:32:59 -0400480
481 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Lever0a26d102021-04-19 14:03:56 -0400482 trace_xprtrdma_wc_li_wake(wc, &mr->mr_cid);
Chuck Leveref2be592020-11-09 14:40:14 -0500483 frwr_mr_done(wc, mr);
Chuck Lever9a301ca2021-04-19 14:04:09 -0400484 complete(&mr->mr_linv_done);
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500485
Chuck Leverf423f752020-06-15 09:21:02 -0400486 rpcrdma_flush_disconnect(cq->cq_context, wc);
Chuck Lever84756892019-06-19 10:32:59 -0400487}
488
Chuck Lever5f624122018-12-19 10:59:01 -0500489/**
490 * frwr_unmap_sync - invalidate memory regions that were registered for @req
Chuck Lever84756892019-06-19 10:32:59 -0400491 * @r_xprt: controlling transport instance
492 * @req: rpcrdma_req with a non-empty list of MRs to process
Chuck Leverc9918ff2015-12-16 17:22:47 -0500493 *
Chuck Lever84756892019-06-19 10:32:59 -0400494 * Sleeps until it is safe for the host CPU to access the previously mapped
Chuck Leverd8099fe2019-06-19 10:33:10 -0400495 * memory regions. This guarantees that registered MRs are properly fenced
496 * from the server before the RPC consumer accesses the data in them. It
497 * also ensures proper Send flow control: waking the next RPC waits until
498 * this RPC has relinquished all its Send Queue entries.
Chuck Leverc9918ff2015-12-16 17:22:47 -0500499 */
Chuck Lever84756892019-06-19 10:32:59 -0400500void frwr_unmap_sync(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
Chuck Leverc9918ff2015-12-16 17:22:47 -0500501{
Bart Van Assched34ac5c2018-07-18 09:25:32 -0700502 struct ib_send_wr *first, **prev, *last;
Chuck Lever5ecef9c2020-11-09 14:39:31 -0500503 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Bart Van Assched34ac5c2018-07-18 09:25:32 -0700504 const struct ib_send_wr *bad_wr;
Chuck Lever96cedde2017-12-14 20:57:55 -0500505 struct rpcrdma_mr *mr;
Chuck Lever84756892019-06-19 10:32:59 -0400506 int rc;
Chuck Leverc9918ff2015-12-16 17:22:47 -0500507
Chuck Lever451d26e2017-06-08 11:52:04 -0400508 /* ORDER: Invalidate all of the MRs first
Chuck Leverc9918ff2015-12-16 17:22:47 -0500509 *
510 * Chain the LOCAL_INV Work Requests and post them with
511 * a single ib_post_send() call.
512 */
Chuck Levera100fda2016-11-29 10:52:57 -0500513 prev = &first;
Benjamin Coddingtoncb5a9672021-11-02 14:48:59 -0400514 mr = rpcrdma_mr_pop(&req->rl_registered);
515 do {
Chuck Lever84756892019-06-19 10:32:59 -0400516 trace_xprtrdma_mr_localinv(mr);
517 r_xprt->rx_stats.local_inv_needed++;
Chuck Leverc8b920b2016-09-15 10:57:16 -0400518
Chuck Leverdcff9ed2021-04-19 14:04:15 -0400519 last = &mr->mr_invwr;
Chuck Lever84756892019-06-19 10:32:59 -0400520 last->next = NULL;
Chuck Levere10fa962021-04-19 14:04:03 -0400521 last->wr_cqe = &mr->mr_cqe;
Chuck Lever84756892019-06-19 10:32:59 -0400522 last->sg_list = NULL;
523 last->num_sge = 0;
Chuck Levera100fda2016-11-29 10:52:57 -0500524 last->opcode = IB_WR_LOCAL_INV;
Chuck Lever84756892019-06-19 10:32:59 -0400525 last->send_flags = IB_SEND_SIGNALED;
Chuck Lever96cedde2017-12-14 20:57:55 -0500526 last->ex.invalidate_rkey = mr->mr_handle;
Chuck Leverc9918ff2015-12-16 17:22:47 -0500527
Chuck Levere10fa962021-04-19 14:04:03 -0400528 last->wr_cqe->done = frwr_wc_localinv;
529
Chuck Levera100fda2016-11-29 10:52:57 -0500530 *prev = last;
531 prev = &last->next;
Benjamin Coddingtoncb5a9672021-11-02 14:48:59 -0400532 } while ((mr = rpcrdma_mr_pop(&req->rl_registered)));
533
Chuck Lever9e895cd2021-05-01 15:38:02 -0400534 mr = container_of(last, struct rpcrdma_mr, mr_invwr);
Chuck Leverc9918ff2015-12-16 17:22:47 -0500535
536 /* Strong send queue ordering guarantees that when the
537 * last WR in the chain completes, all WRs in the chain
538 * are complete.
539 */
Chuck Levere10fa962021-04-19 14:04:03 -0400540 last->wr_cqe->done = frwr_wc_localinv_wake;
Chuck Lever9a301ca2021-04-19 14:04:09 -0400541 reinit_completion(&mr->mr_linv_done);
Chuck Lever8d38de62016-11-29 10:52:16 -0500542
Chuck Leverc9918ff2015-12-16 17:22:47 -0500543 /* Transport disconnect drains the receive CQ before it
544 * replaces the QP. The RPC reply handler won't call us
Chuck Lever93aa8e02020-02-21 17:00:54 -0500545 * unless re_id->qp is a valid pointer.
Chuck Leverc9918ff2015-12-16 17:22:47 -0500546 */
Chuck Lever8d754832017-06-08 11:52:28 -0400547 bad_wr = NULL;
Chuck Lever5ecef9c2020-11-09 14:39:31 -0500548 rc = ib_post_send(ep->re_id->qp, first, &bad_wr);
Chuck Lever84756892019-06-19 10:32:59 -0400549
550 /* The final LOCAL_INV WR in the chain is supposed to
551 * do the wake. If it was never posted, the wake will
552 * not happen, so don't wait in that case.
553 */
Chuck Lever8d754832017-06-08 11:52:28 -0400554 if (bad_wr != first)
Chuck Lever9a301ca2021-04-19 14:04:09 -0400555 wait_for_completion(&mr->mr_linv_done);
Chuck Lever84756892019-06-19 10:32:59 -0400556 if (!rc)
557 return;
Chuck Leverc9918ff2015-12-16 17:22:47 -0500558
Chuck Levere4b52ca2021-04-19 14:03:12 -0400559 /* On error, the MRs get destroyed once the QP has drained. */
Chuck Lever36a55ed2020-11-09 14:39:37 -0500560 trace_xprtrdma_post_linv_err(req, rc);
Chuck Lever11431292021-08-02 14:44:17 -0400561
562 /* Force a connection loss to ensure complete recovery.
563 */
564 rpcrdma_force_disconnect(ep);
Chuck Leverc9918ff2015-12-16 17:22:47 -0500565}
Chuck Leverd8099fe2019-06-19 10:33:10 -0400566
567/**
568 * frwr_wc_localinv_done - Invoked by RDMA provider for a signaled LOCAL_INV WC
Chuck Leverd6ccebf2020-02-21 17:00:49 -0500569 * @cq: completion queue
570 * @wc: WCE for a completed LocalInv WR
Chuck Leverd8099fe2019-06-19 10:33:10 -0400571 *
572 */
573static void frwr_wc_localinv_done(struct ib_cq *cq, struct ib_wc *wc)
574{
575 struct ib_cqe *cqe = wc->wr_cqe;
Chuck Levere10fa962021-04-19 14:04:03 -0400576 struct rpcrdma_mr *mr = container_of(cqe, struct rpcrdma_mr, mr_cqe);
Chuck Lever44438ad2021-04-19 14:03:06 -0400577 struct rpcrdma_rep *rep;
Chuck Leverd8099fe2019-06-19 10:33:10 -0400578
579 /* WARNING: Only wr_cqe and status are reliable at this point */
Chuck Lever0a26d102021-04-19 14:03:56 -0400580 trace_xprtrdma_wc_li_done(wc, &mr->mr_cid);
Chuck Lever6dc6ec92019-08-19 18:47:10 -0400581
Chuck Lever44438ad2021-04-19 14:03:06 -0400582 /* Ensure that @rep is generated before the MR is released */
583 rep = mr->mr_req->rl_reply;
Chuck Lever6dc6ec92019-08-19 18:47:10 -0400584 smp_rmb();
Chuck Lever44438ad2021-04-19 14:03:06 -0400585
Chuck Lever8a053432021-04-19 14:03:19 -0400586 if (wc->status != IB_WC_SUCCESS) {
587 if (rep)
588 rpcrdma_unpin_rqst(rep);
589 rpcrdma_flush_disconnect(cq->cq_context, wc);
590 return;
591 }
592 frwr_mr_put(mr);
Chuck Lever6dc6ec92019-08-19 18:47:10 -0400593 rpcrdma_complete_rqst(rep);
Chuck Leverd8099fe2019-06-19 10:33:10 -0400594}
595
596/**
597 * frwr_unmap_async - invalidate memory regions that were registered for @req
598 * @r_xprt: controlling transport instance
599 * @req: rpcrdma_req with a non-empty list of MRs to process
600 *
601 * This guarantees that registered MRs are properly fenced from the
602 * server before the RPC consumer accesses the data in them. It also
603 * ensures proper Send flow control: waking the next RPC waits until
604 * this RPC has relinquished all its Send Queue entries.
605 */
606void frwr_unmap_async(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
607{
608 struct ib_send_wr *first, *last, **prev;
Chuck Lever5ecef9c2020-11-09 14:39:31 -0500609 struct rpcrdma_ep *ep = r_xprt->rx_ep;
Chuck Leverd8099fe2019-06-19 10:33:10 -0400610 struct rpcrdma_mr *mr;
611 int rc;
612
613 /* Chain the LOCAL_INV Work Requests and post them with
614 * a single ib_post_send() call.
615 */
Chuck Leverd8099fe2019-06-19 10:33:10 -0400616 prev = &first;
Benjamin Coddingtoncb5a9672021-11-02 14:48:59 -0400617 mr = rpcrdma_mr_pop(&req->rl_registered);
618 do {
Chuck Leverd8099fe2019-06-19 10:33:10 -0400619 trace_xprtrdma_mr_localinv(mr);
620 r_xprt->rx_stats.local_inv_needed++;
621
Chuck Leverdcff9ed2021-04-19 14:04:15 -0400622 last = &mr->mr_invwr;
Chuck Leverd8099fe2019-06-19 10:33:10 -0400623 last->next = NULL;
Chuck Levere10fa962021-04-19 14:04:03 -0400624 last->wr_cqe = &mr->mr_cqe;
Chuck Leverd8099fe2019-06-19 10:33:10 -0400625 last->sg_list = NULL;
626 last->num_sge = 0;
627 last->opcode = IB_WR_LOCAL_INV;
628 last->send_flags = IB_SEND_SIGNALED;
629 last->ex.invalidate_rkey = mr->mr_handle;
630
Chuck Levere10fa962021-04-19 14:04:03 -0400631 last->wr_cqe->done = frwr_wc_localinv;
632
Chuck Leverd8099fe2019-06-19 10:33:10 -0400633 *prev = last;
634 prev = &last->next;
Benjamin Coddingtoncb5a9672021-11-02 14:48:59 -0400635 } while ((mr = rpcrdma_mr_pop(&req->rl_registered)));
Chuck Leverd8099fe2019-06-19 10:33:10 -0400636
637 /* Strong send queue ordering guarantees that when the
638 * last WR in the chain completes, all WRs in the chain
639 * are complete. The last completion will wake up the
640 * RPC waiter.
641 */
Chuck Levere10fa962021-04-19 14:04:03 -0400642 last->wr_cqe->done = frwr_wc_localinv_done;
Chuck Leverd8099fe2019-06-19 10:33:10 -0400643
644 /* Transport disconnect drains the receive CQ before it
645 * replaces the QP. The RPC reply handler won't call us
Chuck Lever93aa8e02020-02-21 17:00:54 -0500646 * unless re_id->qp is a valid pointer.
Chuck Leverd8099fe2019-06-19 10:33:10 -0400647 */
Chuck Levere4b52ca2021-04-19 14:03:12 -0400648 rc = ib_post_send(ep->re_id->qp, first, NULL);
Chuck Leverd8099fe2019-06-19 10:33:10 -0400649 if (!rc)
650 return;
651
Chuck Levere4b52ca2021-04-19 14:03:12 -0400652 /* On error, the MRs get destroyed once the QP has drained. */
Chuck Lever36a55ed2020-11-09 14:39:37 -0500653 trace_xprtrdma_post_linv_err(req, rc);
Chuck Leverd8099fe2019-06-19 10:33:10 -0400654
655 /* The final LOCAL_INV WR in the chain is supposed to
Chuck Lever8a053432021-04-19 14:03:19 -0400656 * do the wake. If it was never posted, the wake does
657 * not happen. Unpin the rqst in preparation for its
658 * retransmission.
Chuck Leverd8099fe2019-06-19 10:33:10 -0400659 */
Chuck Lever8a053432021-04-19 14:03:19 -0400660 rpcrdma_unpin_rqst(req->rl_reply);
Chuck Lever11431292021-08-02 14:44:17 -0400661
662 /* Force a connection loss to ensure complete recovery.
663 */
664 rpcrdma_force_disconnect(ep);
Chuck Leverd8099fe2019-06-19 10:33:10 -0400665}
Chuck Lever21037b82021-10-05 10:17:59 -0400666
667/**
668 * frwr_wp_create - Create an MR for padding Write chunks
669 * @r_xprt: transport resources to use
670 *
671 * Return 0 on success, negative errno on failure.
672 */
673int frwr_wp_create(struct rpcrdma_xprt *r_xprt)
674{
675 struct rpcrdma_ep *ep = r_xprt->rx_ep;
676 struct rpcrdma_mr_seg seg;
677 struct rpcrdma_mr *mr;
678
679 mr = rpcrdma_mr_get(r_xprt);
680 if (!mr)
681 return -EAGAIN;
682 mr->mr_req = NULL;
683 ep->re_write_pad_mr = mr;
684
685 seg.mr_len = XDR_UNIT;
686 seg.mr_page = virt_to_page(ep->re_write_pad);
687 seg.mr_offset = offset_in_page(ep->re_write_pad);
688 if (IS_ERR(frwr_map(r_xprt, &seg, 1, true, xdr_zero, mr)))
689 return -EIO;
690 trace_xprtrdma_mr_fastreg(mr);
691
692 mr->mr_cqe.done = frwr_wc_fastreg;
693 mr->mr_regwr.wr.next = NULL;
694 mr->mr_regwr.wr.wr_cqe = &mr->mr_cqe;
695 mr->mr_regwr.wr.num_sge = 0;
696 mr->mr_regwr.wr.opcode = IB_WR_REG_MR;
697 mr->mr_regwr.wr.send_flags = 0;
698
699 return ib_post_send(ep->re_id->qp, &mr->mr_regwr.wr, NULL);
700}