xprtrdma: Reply buffer exhaustion can be catastrophic
[GitHub/moto-9609/android_kernel_motorola_exynos9610.git] / net / sunrpc / xprtrdma / frwr_ops.c
CommitLineData
a0ce85f5
CL
1/*
2 * Copyright (c) 2015 Oracle. All rights reserved.
3 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
4 */
5
6/* Lightweight memory registration using Fast Registration Work
7 * Requests (FRWR). Also referred to sometimes as FRMR mode.
8 *
9 * FRWR features ordered asynchronous registration and deregistration
10 * of arbitrarily sized memory regions. This is the fastest and safest
11 * but most complex memory registration mode.
12 */
13
c14d86e5
CL
14/* Normal operation
15 *
16 * A Memory Region is prepared for RDMA READ or WRITE using a FAST_REG
17 * Work Request (frmr_op_map). When the RDMA operation is finished, this
18 * Memory Region is invalidated using a LOCAL_INV Work Request
19 * (frmr_op_unmap).
20 *
21 * Typically these Work Requests are not signaled, and neither are RDMA
22 * SEND Work Requests (with the exception of signaling occasionally to
23 * prevent provider work queue overflows). This greatly reduces HCA
24 * interrupt workload.
25 *
26 * As an optimization, frwr_op_unmap marks MRs INVALID before the
27 * LOCAL_INV WR is posted. If posting succeeds, the MR is placed on
28 * rb_mws immediately so that no work (like managing a linked list
29 * under a spinlock) is needed in the completion upcall.
30 *
31 * But this means that frwr_op_map() can occasionally encounter an MR
32 * that is INVALID but the LOCAL_INV WR has not completed. Work Queue
33 * ordering prevents a subsequent FAST_REG WR from executing against
34 * that MR while it is still being invalidated.
35 */
36
37/* Transport recovery
38 *
39 * ->op_map and the transport connect worker cannot run at the same
40 * time, but ->op_unmap can fire while the transport connect worker
41 * is running. Thus MR recovery is handled in ->op_map, to guarantee
42 * that recovered MRs are owned by a sending RPC, and not one where
43 * ->op_unmap could fire at the same time transport reconnect is
44 * being done.
45 *
46 * When the underlying transport disconnects, MRs are left in one of
47 * three states:
48 *
49 * INVALID: The MR was not in use before the QP entered ERROR state.
50 * (Or, the LOCAL_INV WR has not completed or flushed yet).
51 *
52 * STALE: The MR was being registered or unregistered when the QP
53 * entered ERROR state, and the pending WR was flushed.
54 *
55 * VALID: The MR was registered before the QP entered ERROR state.
56 *
57 * When frwr_op_map encounters STALE and VALID MRs, they are recovered
58 * with ib_dereg_mr and then are re-initialized. Beause MR recovery
59 * allocates fresh resources, it is deferred to a workqueue, and the
60 * recovered MRs are placed back on the rb_mws list when recovery is
61 * complete. frwr_op_map allocates another MR for the current RPC while
62 * the broken MR is reset.
63 *
64 * To ensure that frwr_op_map doesn't encounter an MR that is marked
65 * INVALID but that is about to be flushed due to a previous transport
66 * disconnect, the transport connect worker attempts to drain all
67 * pending send queue WRs before the transport is reconnected.
68 */
69
a0ce85f5
CL
70#include "xprt_rdma.h"
71
72#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
73# define RPCDBG_FACILITY RPCDBG_TRANS
74#endif
75
b54054ca
CL
76bool
77frwr_is_supported(struct rpcrdma_ia *ia)
78{
79 struct ib_device_attr *attrs = &ia->ri_device->attrs;
80
81 if (!(attrs->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS))
82 goto out_not_supported;
83 if (attrs->max_fast_reg_page_list_len == 0)
84 goto out_not_supported;
85 return true;
86
87out_not_supported:
88 pr_info("rpcrdma: 'frwr' mode is not supported by device %s\n",
89 ia->ri_device->name);
90 return false;
91}
92
d48b1d29
CL
93static int
94__frwr_init(struct rpcrdma_mw *r, struct ib_pd *pd, unsigned int depth)
95{
96 struct rpcrdma_frmr *f = &r->frmr;
97 int rc;
98
99 f->fr_mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG, depth);
100 if (IS_ERR(f->fr_mr))
101 goto out_mr_err;
102
103 r->mw_sg = kcalloc(depth, sizeof(*r->mw_sg), GFP_KERNEL);
104 if (!r->mw_sg)
105 goto out_list_err;
106
107 sg_init_table(r->mw_sg, depth);
108 init_completion(&f->fr_linv_done);
109 return 0;
110
111out_mr_err:
112 rc = PTR_ERR(f->fr_mr);
113 dprintk("RPC: %s: ib_alloc_mr status %i\n",
114 __func__, rc);
115 return rc;
116
117out_list_err:
118 rc = -ENOMEM;
119 dprintk("RPC: %s: sg allocation failure\n",
120 __func__);
121 ib_dereg_mr(f->fr_mr);
122 return rc;
123}
124
125static void
126__frwr_release(struct rpcrdma_mw *r)
127{
128 int rc;
129
130 rc = ib_dereg_mr(r->frmr.fr_mr);
131 if (rc)
132 pr_err("rpcrdma: final ib_dereg_mr for %p returned %i\n",
133 r, rc);
134 kfree(r->mw_sg);
135}
136
d7a21c1b
CL
137static int
138__frwr_reset_mr(struct rpcrdma_ia *ia, struct rpcrdma_mw *r)
139{
140 struct rpcrdma_frmr *f = &r->frmr;
141 int rc;
142
143 rc = ib_dereg_mr(f->fr_mr);
144 if (rc) {
145 pr_warn("rpcrdma: ib_dereg_mr status %d, frwr %p orphaned\n",
146 rc, r);
147 return rc;
148 }
149
150 f->fr_mr = ib_alloc_mr(ia->ri_pd, IB_MR_TYPE_MEM_REG,
151 ia->ri_max_frmr_depth);
152 if (IS_ERR(f->fr_mr)) {
153 pr_warn("rpcrdma: ib_alloc_mr status %ld, frwr %p orphaned\n",
154 PTR_ERR(f->fr_mr), r);
155 return PTR_ERR(f->fr_mr);
156 }
157
158 dprintk("RPC: %s: recovered FRMR %p\n", __func__, r);
159 f->fr_state = FRMR_IS_INVALID;
160 return 0;
161}
162
505bbe64
CL
163/* Reset of a single FRMR. Generate a fresh rkey by replacing the MR.
164 *
165 * There's no recovery if this fails. The FRMR is abandoned, but
166 * remains in rb_all. It will be cleaned up when the transport is
167 * destroyed.
168 */
660bb497 169static void
505bbe64 170frwr_op_recover_mr(struct rpcrdma_mw *mw)
660bb497 171{
564471d2 172 struct rpcrdma_xprt *r_xprt = mw->mw_xprt;
660bb497 173 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
660bb497
CL
174 int rc;
175
176 rc = __frwr_reset_mr(ia, mw);
564471d2 177 ib_dma_unmap_sg(ia->ri_device, mw->mw_sg, mw->mw_nents, mw->mw_dir);
505bbe64
CL
178 if (rc) {
179 pr_err("rpcrdma: FRMR reset status %d, %p orphaned\n",
180 rc, mw);
181 r_xprt->rx_stats.mrs_orphaned++;
660bb497 182 return;
505bbe64 183 }
951e721c 184
505bbe64
CL
185 rpcrdma_put_mw(r_xprt, mw);
186 r_xprt->rx_stats.mrs_recovered++;
951e721c
CL
187}
188
3968cb58
CL
189static int
190frwr_op_open(struct rpcrdma_ia *ia, struct rpcrdma_ep *ep,
191 struct rpcrdma_create_data_internal *cdata)
192{
3968cb58
CL
193 int depth, delta;
194
195 ia->ri_max_frmr_depth =
196 min_t(unsigned int, RPCRDMA_MAX_DATA_SEGS,
e3e45b1b 197 ia->ri_device->attrs.max_fast_reg_page_list_len);
3968cb58
CL
198 dprintk("RPC: %s: device's max FR page list len = %u\n",
199 __func__, ia->ri_max_frmr_depth);
200
201 /* Add room for frmr register and invalidate WRs.
202 * 1. FRMR reg WR for head
203 * 2. FRMR invalidate WR for head
204 * 3. N FRMR reg WRs for pagelist
205 * 4. N FRMR invalidate WRs for pagelist
206 * 5. FRMR reg WR for tail
207 * 6. FRMR invalidate WR for tail
208 * 7. The RDMA_SEND WR
209 */
210 depth = 7;
211
212 /* Calculate N if the device max FRMR depth is smaller than
213 * RPCRDMA_MAX_DATA_SEGS.
214 */
215 if (ia->ri_max_frmr_depth < RPCRDMA_MAX_DATA_SEGS) {
216 delta = RPCRDMA_MAX_DATA_SEGS - ia->ri_max_frmr_depth;
217 do {
218 depth += 2; /* FRMR reg + invalidate */
219 delta -= ia->ri_max_frmr_depth;
220 } while (delta > 0);
221 }
222
223 ep->rep_attr.cap.max_send_wr *= depth;
e3e45b1b
OG
224 if (ep->rep_attr.cap.max_send_wr > ia->ri_device->attrs.max_qp_wr) {
225 cdata->max_requests = ia->ri_device->attrs.max_qp_wr / depth;
3968cb58
CL
226 if (!cdata->max_requests)
227 return -EINVAL;
228 ep->rep_attr.cap.max_send_wr = cdata->max_requests *
229 depth;
230 }
231
302d3deb
CL
232 rpcrdma_set_max_header_sizes(ia, cdata, max_t(unsigned int, 1,
233 RPCRDMA_MAX_DATA_SEGS /
234 ia->ri_max_frmr_depth));
3968cb58
CL
235 return 0;
236}
237
1c9351ee
CL
238/* FRWR mode conveys a list of pages per chunk segment. The
239 * maximum length of that list is the FRWR page list depth.
240 */
241static size_t
242frwr_op_maxpages(struct rpcrdma_xprt *r_xprt)
243{
244 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
245
246 return min_t(unsigned int, RPCRDMA_MAX_DATA_SEGS,
94931746 247 RPCRDMA_MAX_HDR_SEGS * ia->ri_max_frmr_depth);
1c9351ee
CL
248}
249
2fa8f88d
CL
250static void
251__frwr_sendcompletion_flush(struct ib_wc *wc, struct rpcrdma_frmr *frmr,
252 const char *wr)
253{
254 frmr->fr_state = FRMR_IS_STALE;
255 if (wc->status != IB_WC_WR_FLUSH_ERR)
256 pr_err("rpcrdma: %s: %s (%u/0x%x)\n",
257 wr, ib_wc_status_msg(wc->status),
258 wc->status, wc->vendor_err);
259}
260
261/**
262 * frwr_wc_fastreg - Invoked by RDMA provider for each polled FastReg WC
263 * @cq: completion queue (ignored)
264 * @wc: completed WR
c9918ff5 265 *
c9918ff5 266 */
e46ac34c 267static void
2fa8f88d 268frwr_wc_fastreg(struct ib_cq *cq, struct ib_wc *wc)
e46ac34c 269{
2fa8f88d
CL
270 struct rpcrdma_frmr *frmr;
271 struct ib_cqe *cqe;
c9918ff5 272
2fa8f88d
CL
273 /* WARNING: Only wr_cqe and status are reliable at this point */
274 if (wc->status != IB_WC_SUCCESS) {
275 cqe = wc->wr_cqe;
276 frmr = container_of(cqe, struct rpcrdma_frmr, fr_cqe);
277 __frwr_sendcompletion_flush(wc, frmr, "fastreg");
278 }
e46ac34c
CL
279}
280
2fa8f88d
CL
281/**
282 * frwr_wc_localinv - Invoked by RDMA provider for each polled LocalInv WC
283 * @cq: completion queue (ignored)
284 * @wc: completed WR
285 *
286 */
c9918ff5 287static void
2fa8f88d 288frwr_wc_localinv(struct ib_cq *cq, struct ib_wc *wc)
c9918ff5 289{
2fa8f88d
CL
290 struct rpcrdma_frmr *frmr;
291 struct ib_cqe *cqe;
c9918ff5 292
2fa8f88d
CL
293 /* WARNING: Only wr_cqe and status are reliable at this point */
294 if (wc->status != IB_WC_SUCCESS) {
295 cqe = wc->wr_cqe;
296 frmr = container_of(cqe, struct rpcrdma_frmr, fr_cqe);
297 __frwr_sendcompletion_flush(wc, frmr, "localinv");
298 }
299}
c9918ff5 300
2fa8f88d
CL
301/**
302 * frwr_wc_localinv - Invoked by RDMA provider for each polled LocalInv WC
303 * @cq: completion queue (ignored)
304 * @wc: completed WR
305 *
306 * Awaken anyone waiting for an MR to finish being fenced.
307 */
308static void
309frwr_wc_localinv_wake(struct ib_cq *cq, struct ib_wc *wc)
310{
311 struct rpcrdma_frmr *frmr;
312 struct ib_cqe *cqe;
313
314 /* WARNING: Only wr_cqe and status are reliable at this point */
315 cqe = wc->wr_cqe;
316 frmr = container_of(cqe, struct rpcrdma_frmr, fr_cqe);
317 if (wc->status != IB_WC_SUCCESS)
318 __frwr_sendcompletion_flush(wc, frmr, "localinv");
319 complete_all(&frmr->fr_linv_done);
c9918ff5
CL
320}
321
91e70e70
CL
322static int
323frwr_op_init(struct rpcrdma_xprt *r_xprt)
324{
325 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
91e70e70
CL
326 unsigned int depth = r_xprt->rx_ia.ri_max_frmr_depth;
327 struct ib_pd *pd = r_xprt->rx_ia.ri_pd;
328 int i;
329
58d1dcf5 330 spin_lock_init(&buf->rb_mwlock);
91e70e70
CL
331 INIT_LIST_HEAD(&buf->rb_mws);
332 INIT_LIST_HEAD(&buf->rb_all);
333
40c6ed0c
CL
334 i = max_t(int, RPCRDMA_MAX_DATA_SEGS / depth, 1);
335 i += 2; /* head + tail */
336 i *= buf->rb_max_requests; /* one set for each RPC slot */
337 dprintk("RPC: %s: initalizing %d FRMRs\n", __func__, i);
91e70e70
CL
338
339 while (i--) {
340 struct rpcrdma_mw *r;
341 int rc;
342
343 r = kzalloc(sizeof(*r), GFP_KERNEL);
344 if (!r)
345 return -ENOMEM;
346
564471d2 347 rc = __frwr_init(r, pd, depth);
91e70e70
CL
348 if (rc) {
349 kfree(r);
350 return rc;
351 }
352
766656b0 353 r->mw_xprt = r_xprt;
91e70e70
CL
354 list_add(&r->mw_list, &buf->rb_mws);
355 list_add(&r->mw_all, &buf->rb_all);
356 }
357
358 return 0;
359}
360
564471d2 361/* Post a REG_MR Work Request to register a memory region
9c1b4d77
CL
362 * for remote access via RDMA READ or RDMA WRITE.
363 */
364static int
365frwr_op_map(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr_seg *seg,
366 int nsegs, bool writing)
367{
368 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
369 struct rpcrdma_mr_seg *seg1 = seg;
c14d86e5
CL
370 struct rpcrdma_mw *mw;
371 struct rpcrdma_frmr *frmr;
372 struct ib_mr *mr;
3cf4e169 373 struct ib_reg_wr *reg_wr;
e622f2f4 374 struct ib_send_wr *bad_wr;
4143f34e 375 int rc, i, n, dma_nents;
9c1b4d77 376 u8 key;
9c1b4d77 377
c14d86e5
CL
378 mw = seg1->rl_mw;
379 seg1->rl_mw = NULL;
380 do {
381 if (mw)
505bbe64 382 rpcrdma_defer_mr_recovery(mw);
c14d86e5
CL
383 mw = rpcrdma_get_mw(r_xprt);
384 if (!mw)
385 return -ENOMEM;
c882a655
CL
386 } while (mw->frmr.fr_state != FRMR_IS_INVALID);
387 frmr = &mw->frmr;
c14d86e5 388 frmr->fr_state = FRMR_IS_VALID;
4143f34e 389 mr = frmr->fr_mr;
3cf4e169 390 reg_wr = &frmr->fr_regwr;
c14d86e5 391
9c1b4d77
CL
392 if (nsegs > ia->ri_max_frmr_depth)
393 nsegs = ia->ri_max_frmr_depth;
4143f34e
SG
394 for (i = 0; i < nsegs;) {
395 if (seg->mr_page)
564471d2 396 sg_set_page(&mw->mw_sg[i],
4143f34e
SG
397 seg->mr_page,
398 seg->mr_len,
399 offset_in_page(seg->mr_offset));
400 else
564471d2 401 sg_set_buf(&mw->mw_sg[i], seg->mr_offset,
4143f34e
SG
402 seg->mr_len);
403
9c1b4d77
CL
404 ++seg;
405 ++i;
4143f34e 406
9c1b4d77
CL
407 /* Check for holes */
408 if ((i < nsegs && offset_in_page(seg->mr_offset)) ||
409 offset_in_page((seg-1)->mr_offset + (seg-1)->mr_len))
410 break;
411 }
564471d2
CL
412 mw->mw_nents = i;
413 mw->mw_dir = rpcrdma_data_dir(writing);
4143f34e 414
564471d2
CL
415 dma_nents = ib_dma_map_sg(ia->ri_device,
416 mw->mw_sg, mw->mw_nents, mw->mw_dir);
417 if (!dma_nents)
418 goto out_dmamap_err;
419
420 n = ib_map_mr_sg(mr, mw->mw_sg, mw->mw_nents, NULL, PAGE_SIZE);
421 if (unlikely(n != mw->mw_nents))
422 goto out_mapmr_err;
4143f34e
SG
423
424 dprintk("RPC: %s: Using frmr %p to map %u segments (%u bytes)\n",
564471d2 425 __func__, mw, mw->mw_nents, mr->length);
4143f34e 426
9c1b4d77
CL
427 key = (u8)(mr->rkey & 0x000000FF);
428 ib_update_fast_reg_key(mr, ++key);
4143f34e 429
3cf4e169
CL
430 reg_wr->wr.next = NULL;
431 reg_wr->wr.opcode = IB_WR_REG_MR;
2fa8f88d
CL
432 frmr->fr_cqe.done = frwr_wc_fastreg;
433 reg_wr->wr.wr_cqe = &frmr->fr_cqe;
3cf4e169
CL
434 reg_wr->wr.num_sge = 0;
435 reg_wr->wr.send_flags = 0;
436 reg_wr->mr = mr;
437 reg_wr->key = mr->rkey;
438 reg_wr->access = writing ?
439 IB_ACCESS_REMOTE_WRITE | IB_ACCESS_LOCAL_WRITE :
440 IB_ACCESS_REMOTE_READ;
9c1b4d77
CL
441
442 DECR_CQCOUNT(&r_xprt->rx_ep);
3cf4e169 443 rc = ib_post_send(ia->ri_id->qp, &reg_wr->wr, &bad_wr);
9c1b4d77
CL
444 if (rc)
445 goto out_senderr;
446
c14d86e5 447 seg1->rl_mw = mw;
9c1b4d77 448 seg1->mr_rkey = mr->rkey;
4143f34e 449 seg1->mr_base = mr->iova;
564471d2 450 seg1->mr_nsegs = mw->mw_nents;
4143f34e
SG
451 seg1->mr_len = mr->length;
452
564471d2
CL
453 return mw->mw_nents;
454
455out_dmamap_err:
456 pr_err("rpcrdma: failed to dma map sg %p sg_nents %u\n",
457 mw->mw_sg, mw->mw_nents);
42fe28f6 458 rpcrdma_defer_mr_recovery(mw);
564471d2
CL
459 return -ENOMEM;
460
461out_mapmr_err:
462 pr_err("rpcrdma: failed to map mr %p (%u/%u)\n",
463 frmr->fr_mr, n, mw->mw_nents);
464 rc = n < 0 ? n : -EIO;
505bbe64 465 rpcrdma_defer_mr_recovery(mw);
564471d2 466 return rc;
9c1b4d77
CL
467
468out_senderr:
505bbe64 469 rpcrdma_defer_mr_recovery(mw);
9c1b4d77
CL
470 return rc;
471}
472
c9918ff5
CL
473static struct ib_send_wr *
474__frwr_prepare_linv_wr(struct rpcrdma_mr_seg *seg)
475{
476 struct rpcrdma_mw *mw = seg->rl_mw;
c882a655 477 struct rpcrdma_frmr *f = &mw->frmr;
c9918ff5
CL
478 struct ib_send_wr *invalidate_wr;
479
c9918ff5
CL
480 f->fr_state = FRMR_IS_INVALID;
481 invalidate_wr = &f->fr_invwr;
482
483 memset(invalidate_wr, 0, sizeof(*invalidate_wr));
2fa8f88d
CL
484 f->fr_cqe.done = frwr_wc_localinv;
485 invalidate_wr->wr_cqe = &f->fr_cqe;
c9918ff5
CL
486 invalidate_wr->opcode = IB_WR_LOCAL_INV;
487 invalidate_wr->ex.invalidate_rkey = f->fr_mr->rkey;
488
489 return invalidate_wr;
490}
491
c9918ff5
CL
492/* Invalidate all memory regions that were registered for "req".
493 *
494 * Sleeps until it is safe for the host CPU to access the
495 * previously mapped memory regions.
496 */
497static void
498frwr_op_unmap_sync(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
499{
500 struct ib_send_wr *invalidate_wrs, *pos, *prev, *bad_wr;
501 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
502 struct rpcrdma_mr_seg *seg;
503 unsigned int i, nchunks;
504 struct rpcrdma_frmr *f;
d7a21c1b 505 struct rpcrdma_mw *mw;
c9918ff5
CL
506 int rc;
507
508 dprintk("RPC: %s: req %p\n", __func__, req);
509
510 /* ORDER: Invalidate all of the req's MRs first
511 *
512 * Chain the LOCAL_INV Work Requests and post them with
513 * a single ib_post_send() call.
514 */
515 invalidate_wrs = pos = prev = NULL;
516 seg = NULL;
517 for (i = 0, nchunks = req->rl_nchunks; nchunks; nchunks--) {
518 seg = &req->rl_segments[i];
519
520 pos = __frwr_prepare_linv_wr(seg);
521
522 if (!invalidate_wrs)
523 invalidate_wrs = pos;
524 else
525 prev->next = pos;
526 prev = pos;
527
528 i += seg->mr_nsegs;
529 }
c882a655 530 f = &seg->rl_mw->frmr;
c9918ff5
CL
531
532 /* Strong send queue ordering guarantees that when the
533 * last WR in the chain completes, all WRs in the chain
534 * are complete.
535 */
536 f->fr_invwr.send_flags = IB_SEND_SIGNALED;
2fa8f88d
CL
537 f->fr_cqe.done = frwr_wc_localinv_wake;
538 reinit_completion(&f->fr_linv_done);
c9918ff5
CL
539 INIT_CQCOUNT(&r_xprt->rx_ep);
540
541 /* Transport disconnect drains the receive CQ before it
542 * replaces the QP. The RPC reply handler won't call us
543 * unless ri_id->qp is a valid pointer.
544 */
545 rc = ib_post_send(ia->ri_id->qp, invalidate_wrs, &bad_wr);
d7a21c1b
CL
546 if (rc)
547 goto reset_mrs;
c9918ff5
CL
548
549 wait_for_completion(&f->fr_linv_done);
550
551 /* ORDER: Now DMA unmap all of the req's MRs, and return
552 * them to the free MW list.
553 */
b892a699 554unmap:
c9918ff5
CL
555 for (i = 0, nchunks = req->rl_nchunks; nchunks; nchunks--) {
556 seg = &req->rl_segments[i];
d7a21c1b
CL
557 mw = seg->rl_mw;
558 seg->rl_mw = NULL;
c9918ff5 559
564471d2
CL
560 ib_dma_unmap_sg(ia->ri_device,
561 mw->mw_sg, mw->mw_nents, mw->mw_dir);
d7a21c1b 562 rpcrdma_put_mw(r_xprt, mw);
c9918ff5
CL
563
564 i += seg->mr_nsegs;
565 seg->mr_nsegs = 0;
566 }
567
568 req->rl_nchunks = 0;
d7a21c1b 569 return;
c9918ff5 570
d7a21c1b
CL
571reset_mrs:
572 pr_warn("%s: ib_post_send failed %i\n", __func__, rc);
6814baea 573
d7a21c1b
CL
574 /* Find and reset the MRs in the LOCAL_INV WRs that did not
575 * get posted. This is synchronous, and slow.
576 */
577 for (i = 0, nchunks = req->rl_nchunks; nchunks; nchunks--) {
578 seg = &req->rl_segments[i];
579 mw = seg->rl_mw;
580 f = &mw->frmr;
c14d86e5 581
d7a21c1b
CL
582 if (mw->frmr.fr_mr->rkey == bad_wr->ex.invalidate_rkey) {
583 __frwr_reset_mr(ia, mw);
584 bad_wr = bad_wr->next;
585 }
6814baea 586
d7a21c1b
CL
587 i += seg->mr_nsegs;
588 }
589 goto unmap;
c9918ff5 590}
6814baea 591
ead3f26e
CL
592/* Use a slow, safe mechanism to invalidate all memory regions
593 * that were registered for "req".
594 */
595static void
596frwr_op_unmap_safe(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
597 bool sync)
598{
599 struct rpcrdma_mr_seg *seg;
600 struct rpcrdma_mw *mw;
601 unsigned int i;
c14d86e5 602
ead3f26e
CL
603 for (i = 0; req->rl_nchunks; req->rl_nchunks--) {
604 seg = &req->rl_segments[i];
605 mw = seg->rl_mw;
6814baea 606
ead3f26e 607 if (sync)
505bbe64 608 frwr_op_recover_mr(mw);
ead3f26e 609 else
505bbe64 610 rpcrdma_defer_mr_recovery(mw);
ead3f26e
CL
611
612 i += seg->mr_nsegs;
613 seg->mr_nsegs = 0;
614 seg->rl_mw = NULL;
615 }
6814baea
CL
616}
617
4561f347
CL
618static void
619frwr_op_destroy(struct rpcrdma_buffer *buf)
620{
621 struct rpcrdma_mw *r;
622
623 while (!list_empty(&buf->rb_all)) {
624 r = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
625 list_del(&r->mw_all);
626 __frwr_release(r);
627 kfree(r);
628 }
629}
630
a0ce85f5 631const struct rpcrdma_memreg_ops rpcrdma_frwr_memreg_ops = {
9c1b4d77 632 .ro_map = frwr_op_map,
c9918ff5 633 .ro_unmap_sync = frwr_op_unmap_sync,
ead3f26e 634 .ro_unmap_safe = frwr_op_unmap_safe,
505bbe64 635 .ro_recover_mr = frwr_op_recover_mr,
3968cb58 636 .ro_open = frwr_op_open,
1c9351ee 637 .ro_maxpages = frwr_op_maxpages,
91e70e70 638 .ro_init = frwr_op_init,
4561f347 639 .ro_destroy = frwr_op_destroy,
a0ce85f5
CL
640 .ro_displayname = "frwr",
641};