Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.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
951e721c
CL
76static struct workqueue_struct *frwr_recovery_wq;
77
78#define FRWR_RECOVERY_WQ_FLAGS (WQ_UNBOUND | WQ_MEM_RECLAIM)
79
80int
81frwr_alloc_recovery_wq(void)
82{
83 frwr_recovery_wq = alloc_workqueue("frwr_recovery",
84 FRWR_RECOVERY_WQ_FLAGS, 0);
85 return !frwr_recovery_wq ? -ENOMEM : 0;
86}
87
88void
89frwr_destroy_recovery_wq(void)
90{
91 struct workqueue_struct *wq;
92
93 if (!frwr_recovery_wq)
94 return;
95
96 wq = frwr_recovery_wq;
97 frwr_recovery_wq = NULL;
98 destroy_workqueue(wq);
99}
100
101/* Deferred reset of a single FRMR. Generate a fresh rkey by
102 * replacing the MR.
103 *
104 * There's no recovery if this fails. The FRMR is abandoned, but
105 * remains in rb_all. It will be cleaned up when the transport is
106 * destroyed.
107 */
108static void
109__frwr_recovery_worker(struct work_struct *work)
110{
111 struct rpcrdma_mw *r = container_of(work, struct rpcrdma_mw,
112 r.frmr.fr_work);
113 struct rpcrdma_xprt *r_xprt = r->r.frmr.fr_xprt;
114 unsigned int depth = r_xprt->rx_ia.ri_max_frmr_depth;
115 struct ib_pd *pd = r_xprt->rx_ia.ri_pd;
116
117 if (ib_dereg_mr(r->r.frmr.fr_mr))
118 goto out_fail;
119
0410e38e 120 r->r.frmr.fr_mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG, depth);
951e721c
CL
121 if (IS_ERR(r->r.frmr.fr_mr))
122 goto out_fail;
123
124 dprintk("RPC: %s: recovered FRMR %p\n", __func__, r);
125 r->r.frmr.fr_state = FRMR_IS_INVALID;
126 rpcrdma_put_mw(r_xprt, r);
127 return;
128
129out_fail:
130 pr_warn("RPC: %s: FRMR %p unrecovered\n",
131 __func__, r);
132}
133
134/* A broken MR was discovered in a context that can't sleep.
135 * Defer recovery to the recovery worker.
136 */
137static void
138__frwr_queue_recovery(struct rpcrdma_mw *r)
139{
140 INIT_WORK(&r->r.frmr.fr_work, __frwr_recovery_worker);
141 queue_work(frwr_recovery_wq, &r->r.frmr.fr_work);
142}
143
91e70e70
CL
144static int
145__frwr_init(struct rpcrdma_mw *r, struct ib_pd *pd, struct ib_device *device,
146 unsigned int depth)
147{
148 struct rpcrdma_frmr *f = &r->r.frmr;
149 int rc;
150
0410e38e 151 f->fr_mr = ib_alloc_mr(pd, IB_MR_TYPE_MEM_REG, depth);
91e70e70
CL
152 if (IS_ERR(f->fr_mr))
153 goto out_mr_err;
4143f34e
SG
154
155 f->sg = kcalloc(depth, sizeof(*f->sg), GFP_KERNEL);
156 if (!f->sg)
91e70e70 157 goto out_list_err;
4143f34e
SG
158
159 sg_init_table(f->sg, depth);
160
91e70e70
CL
161 return 0;
162
163out_mr_err:
164 rc = PTR_ERR(f->fr_mr);
0410e38e 165 dprintk("RPC: %s: ib_alloc_mr status %i\n",
91e70e70
CL
166 __func__, rc);
167 return rc;
168
169out_list_err:
4143f34e
SG
170 rc = -ENOMEM;
171 dprintk("RPC: %s: sg allocation failure\n",
172 __func__);
91e70e70
CL
173 ib_dereg_mr(f->fr_mr);
174 return rc;
175}
176
31a701a9
CL
177static void
178__frwr_release(struct rpcrdma_mw *r)
179{
180 int rc;
181
182 rc = ib_dereg_mr(r->r.frmr.fr_mr);
183 if (rc)
184 dprintk("RPC: %s: ib_dereg_mr status %i\n",
185 __func__, rc);
4143f34e 186 kfree(r->r.frmr.sg);
31a701a9
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
232 return 0;
233}
234
1c9351ee
CL
235/* FRWR mode conveys a list of pages per chunk segment. The
236 * maximum length of that list is the FRWR page list depth.
237 */
238static size_t
239frwr_op_maxpages(struct rpcrdma_xprt *r_xprt)
240{
241 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
242
243 return min_t(unsigned int, RPCRDMA_MAX_DATA_SEGS,
244 rpcrdma_max_segments(r_xprt) * ia->ri_max_frmr_depth);
245}
246
c9918ff5
CL
247/* If FAST_REG or LOCAL_INV failed, indicate the frmr needs
248 * to be reset.
249 *
250 * WARNING: Only wr_id and status are reliable at this point
251 */
e46ac34c 252static void
c9918ff5 253__frwr_sendcompletion_flush(struct ib_wc *wc, struct rpcrdma_mw *r)
e46ac34c 254{
e46ac34c
CL
255 if (likely(wc->status == IB_WC_SUCCESS))
256 return;
257
258 /* WARNING: Only wr_id and status are reliable at this point */
259 r = (struct rpcrdma_mw *)(unsigned long)wc->wr_id;
8610586d
SW
260 if (wc->status == IB_WC_WR_FLUSH_ERR)
261 dprintk("RPC: %s: frmr %p flushed\n", __func__, r);
262 else
263 pr_warn("RPC: %s: frmr %p error, status %s (%d)\n",
264 __func__, r, ib_wc_status_msg(wc->status), wc->status);
c9918ff5 265
e46ac34c
CL
266 r->r.frmr.fr_state = FRMR_IS_STALE;
267}
268
c9918ff5
CL
269static void
270frwr_sendcompletion(struct ib_wc *wc)
271{
272 struct rpcrdma_mw *r = (struct rpcrdma_mw *)(unsigned long)wc->wr_id;
273 struct rpcrdma_frmr *f = &r->r.frmr;
274
275 if (unlikely(wc->status != IB_WC_SUCCESS))
276 __frwr_sendcompletion_flush(wc, r);
277
278 if (f->fr_waiter)
279 complete(&f->fr_linv_done);
280}
281
91e70e70
CL
282static int
283frwr_op_init(struct rpcrdma_xprt *r_xprt)
284{
285 struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
89e0d112 286 struct ib_device *device = r_xprt->rx_ia.ri_device;
91e70e70
CL
287 unsigned int depth = r_xprt->rx_ia.ri_max_frmr_depth;
288 struct ib_pd *pd = r_xprt->rx_ia.ri_pd;
289 int i;
290
58d1dcf5 291 spin_lock_init(&buf->rb_mwlock);
91e70e70
CL
292 INIT_LIST_HEAD(&buf->rb_mws);
293 INIT_LIST_HEAD(&buf->rb_all);
294
40c6ed0c
CL
295 i = max_t(int, RPCRDMA_MAX_DATA_SEGS / depth, 1);
296 i += 2; /* head + tail */
297 i *= buf->rb_max_requests; /* one set for each RPC slot */
298 dprintk("RPC: %s: initalizing %d FRMRs\n", __func__, i);
91e70e70
CL
299
300 while (i--) {
301 struct rpcrdma_mw *r;
302 int rc;
303
304 r = kzalloc(sizeof(*r), GFP_KERNEL);
305 if (!r)
306 return -ENOMEM;
307
308 rc = __frwr_init(r, pd, device, depth);
309 if (rc) {
310 kfree(r);
311 return rc;
312 }
313
314 list_add(&r->mw_list, &buf->rb_mws);
315 list_add(&r->mw_all, &buf->rb_all);
e46ac34c 316 r->mw_sendcompletion = frwr_sendcompletion;
951e721c 317 r->r.frmr.fr_xprt = r_xprt;
91e70e70
CL
318 }
319
320 return 0;
321}
322
9c1b4d77
CL
323/* Post a FAST_REG Work Request to register a memory region
324 * for remote access via RDMA READ or RDMA WRITE.
325 */
326static int
327frwr_op_map(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr_seg *seg,
328 int nsegs, bool writing)
329{
330 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
89e0d112 331 struct ib_device *device = ia->ri_device;
d654788e 332 enum dma_data_direction direction = rpcrdma_data_dir(writing);
9c1b4d77 333 struct rpcrdma_mr_seg *seg1 = seg;
c14d86e5
CL
334 struct rpcrdma_mw *mw;
335 struct rpcrdma_frmr *frmr;
336 struct ib_mr *mr;
3cf4e169 337 struct ib_reg_wr *reg_wr;
e622f2f4 338 struct ib_send_wr *bad_wr;
4143f34e 339 int rc, i, n, dma_nents;
9c1b4d77 340 u8 key;
9c1b4d77 341
c14d86e5
CL
342 mw = seg1->rl_mw;
343 seg1->rl_mw = NULL;
344 do {
345 if (mw)
346 __frwr_queue_recovery(mw);
347 mw = rpcrdma_get_mw(r_xprt);
348 if (!mw)
349 return -ENOMEM;
350 } while (mw->r.frmr.fr_state != FRMR_IS_INVALID);
351 frmr = &mw->r.frmr;
352 frmr->fr_state = FRMR_IS_VALID;
c9918ff5 353 frmr->fr_waiter = false;
4143f34e 354 mr = frmr->fr_mr;
3cf4e169 355 reg_wr = &frmr->fr_regwr;
c14d86e5 356
9c1b4d77
CL
357 if (nsegs > ia->ri_max_frmr_depth)
358 nsegs = ia->ri_max_frmr_depth;
c14d86e5 359
4143f34e
SG
360 for (i = 0; i < nsegs;) {
361 if (seg->mr_page)
362 sg_set_page(&frmr->sg[i],
363 seg->mr_page,
364 seg->mr_len,
365 offset_in_page(seg->mr_offset));
366 else
367 sg_set_buf(&frmr->sg[i], seg->mr_offset,
368 seg->mr_len);
369
9c1b4d77
CL
370 ++seg;
371 ++i;
4143f34e 372
9c1b4d77
CL
373 /* Check for holes */
374 if ((i < nsegs && offset_in_page(seg->mr_offset)) ||
375 offset_in_page((seg-1)->mr_offset + (seg-1)->mr_len))
376 break;
377 }
4143f34e
SG
378 frmr->sg_nents = i;
379
380 dma_nents = ib_dma_map_sg(device, frmr->sg, frmr->sg_nents, direction);
381 if (!dma_nents) {
382 pr_err("RPC: %s: failed to dma map sg %p sg_nents %u\n",
383 __func__, frmr->sg, frmr->sg_nents);
384 return -ENOMEM;
385 }
386
387 n = ib_map_mr_sg(mr, frmr->sg, frmr->sg_nents, PAGE_SIZE);
388 if (unlikely(n != frmr->sg_nents)) {
389 pr_err("RPC: %s: failed to map mr %p (%u/%u)\n",
390 __func__, frmr->fr_mr, n, frmr->sg_nents);
391 rc = n < 0 ? n : -EINVAL;
392 goto out_senderr;
393 }
394
395 dprintk("RPC: %s: Using frmr %p to map %u segments (%u bytes)\n",
396 __func__, mw, frmr->sg_nents, mr->length);
397
9c1b4d77
CL
398 key = (u8)(mr->rkey & 0x000000FF);
399 ib_update_fast_reg_key(mr, ++key);
4143f34e 400
3cf4e169
CL
401 reg_wr->wr.next = NULL;
402 reg_wr->wr.opcode = IB_WR_REG_MR;
403 reg_wr->wr.wr_id = (uintptr_t)mw;
404 reg_wr->wr.num_sge = 0;
405 reg_wr->wr.send_flags = 0;
406 reg_wr->mr = mr;
407 reg_wr->key = mr->rkey;
408 reg_wr->access = writing ?
409 IB_ACCESS_REMOTE_WRITE | IB_ACCESS_LOCAL_WRITE :
410 IB_ACCESS_REMOTE_READ;
9c1b4d77
CL
411
412 DECR_CQCOUNT(&r_xprt->rx_ep);
3cf4e169 413 rc = ib_post_send(ia->ri_id->qp, &reg_wr->wr, &bad_wr);
9c1b4d77
CL
414 if (rc)
415 goto out_senderr;
416
4143f34e 417 seg1->mr_dir = direction;
c14d86e5 418 seg1->rl_mw = mw;
9c1b4d77 419 seg1->mr_rkey = mr->rkey;
4143f34e
SG
420 seg1->mr_base = mr->iova;
421 seg1->mr_nsegs = frmr->sg_nents;
422 seg1->mr_len = mr->length;
423
424 return frmr->sg_nents;
9c1b4d77
CL
425
426out_senderr:
427 dprintk("RPC: %s: ib_post_send status %i\n", __func__, rc);
4143f34e 428 ib_dma_unmap_sg(device, frmr->sg, dma_nents, direction);
c14d86e5 429 __frwr_queue_recovery(mw);
9c1b4d77
CL
430 return rc;
431}
432
c9918ff5
CL
433static struct ib_send_wr *
434__frwr_prepare_linv_wr(struct rpcrdma_mr_seg *seg)
435{
436 struct rpcrdma_mw *mw = seg->rl_mw;
437 struct rpcrdma_frmr *f = &mw->r.frmr;
438 struct ib_send_wr *invalidate_wr;
439
440 f->fr_waiter = false;
441 f->fr_state = FRMR_IS_INVALID;
442 invalidate_wr = &f->fr_invwr;
443
444 memset(invalidate_wr, 0, sizeof(*invalidate_wr));
445 invalidate_wr->wr_id = (unsigned long)(void *)mw;
446 invalidate_wr->opcode = IB_WR_LOCAL_INV;
447 invalidate_wr->ex.invalidate_rkey = f->fr_mr->rkey;
448
449 return invalidate_wr;
450}
451
452static void
453__frwr_dma_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr_seg *seg,
454 int rc)
455{
456 struct ib_device *device = r_xprt->rx_ia.ri_device;
457 struct rpcrdma_mw *mw = seg->rl_mw;
458 struct rpcrdma_frmr *f = &mw->r.frmr;
459
460 seg->rl_mw = NULL;
461
462 ib_dma_unmap_sg(device, f->sg, f->sg_nents, seg->mr_dir);
463
464 if (!rc)
465 rpcrdma_put_mw(r_xprt, mw);
466 else
467 __frwr_queue_recovery(mw);
468}
469
470/* Invalidate all memory regions that were registered for "req".
471 *
472 * Sleeps until it is safe for the host CPU to access the
473 * previously mapped memory regions.
474 */
475static void
476frwr_op_unmap_sync(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
477{
478 struct ib_send_wr *invalidate_wrs, *pos, *prev, *bad_wr;
479 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
480 struct rpcrdma_mr_seg *seg;
481 unsigned int i, nchunks;
482 struct rpcrdma_frmr *f;
483 int rc;
484
485 dprintk("RPC: %s: req %p\n", __func__, req);
486
487 /* ORDER: Invalidate all of the req's MRs first
488 *
489 * Chain the LOCAL_INV Work Requests and post them with
490 * a single ib_post_send() call.
491 */
492 invalidate_wrs = pos = prev = NULL;
493 seg = NULL;
494 for (i = 0, nchunks = req->rl_nchunks; nchunks; nchunks--) {
495 seg = &req->rl_segments[i];
496
497 pos = __frwr_prepare_linv_wr(seg);
498
499 if (!invalidate_wrs)
500 invalidate_wrs = pos;
501 else
502 prev->next = pos;
503 prev = pos;
504
505 i += seg->mr_nsegs;
506 }
507 f = &seg->rl_mw->r.frmr;
508
509 /* Strong send queue ordering guarantees that when the
510 * last WR in the chain completes, all WRs in the chain
511 * are complete.
512 */
513 f->fr_invwr.send_flags = IB_SEND_SIGNALED;
514 f->fr_waiter = true;
515 init_completion(&f->fr_linv_done);
516 INIT_CQCOUNT(&r_xprt->rx_ep);
517
518 /* Transport disconnect drains the receive CQ before it
519 * replaces the QP. The RPC reply handler won't call us
520 * unless ri_id->qp is a valid pointer.
521 */
522 rc = ib_post_send(ia->ri_id->qp, invalidate_wrs, &bad_wr);
523 if (rc)
524 pr_warn("%s: ib_post_send failed %i\n", __func__, rc);
525
526 wait_for_completion(&f->fr_linv_done);
527
528 /* ORDER: Now DMA unmap all of the req's MRs, and return
529 * them to the free MW list.
530 */
531 for (i = 0, nchunks = req->rl_nchunks; nchunks; nchunks--) {
532 seg = &req->rl_segments[i];
533
534 __frwr_dma_unmap(r_xprt, seg, rc);
535
536 i += seg->mr_nsegs;
537 seg->mr_nsegs = 0;
538 }
539
540 req->rl_nchunks = 0;
541}
542
6814baea
CL
543/* Post a LOCAL_INV Work Request to prevent further remote access
544 * via RDMA READ or RDMA WRITE.
545 */
546static int
547frwr_op_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr_seg *seg)
548{
549 struct rpcrdma_mr_seg *seg1 = seg;
550 struct rpcrdma_ia *ia = &r_xprt->rx_ia;
c14d86e5 551 struct rpcrdma_mw *mw = seg1->rl_mw;
4143f34e 552 struct rpcrdma_frmr *frmr = &mw->r.frmr;
3cf4e169 553 struct ib_send_wr *invalidate_wr, *bad_wr;
6814baea
CL
554 int rc, nsegs = seg->mr_nsegs;
555
c14d86e5
CL
556 dprintk("RPC: %s: FRMR %p\n", __func__, mw);
557
558 seg1->rl_mw = NULL;
4143f34e 559 frmr->fr_state = FRMR_IS_INVALID;
3cf4e169 560 invalidate_wr = &mw->r.frmr.fr_invwr;
6814baea 561
3cf4e169
CL
562 memset(invalidate_wr, 0, sizeof(*invalidate_wr));
563 invalidate_wr->wr_id = (uintptr_t)mw;
564 invalidate_wr->opcode = IB_WR_LOCAL_INV;
565 invalidate_wr->ex.invalidate_rkey = frmr->fr_mr->rkey;
6814baea
CL
566 DECR_CQCOUNT(&r_xprt->rx_ep);
567
4143f34e 568 ib_dma_unmap_sg(ia->ri_device, frmr->sg, frmr->sg_nents, seg1->mr_dir);
89e0d112 569 read_lock(&ia->ri_qplock);
3cf4e169 570 rc = ib_post_send(ia->ri_id->qp, invalidate_wr, &bad_wr);
6814baea
CL
571 read_unlock(&ia->ri_qplock);
572 if (rc)
573 goto out_err;
c14d86e5
CL
574
575 rpcrdma_put_mw(r_xprt, mw);
6814baea
CL
576 return nsegs;
577
578out_err:
6814baea 579 dprintk("RPC: %s: ib_post_send status %i\n", __func__, rc);
c14d86e5 580 __frwr_queue_recovery(mw);
6814baea
CL
581 return nsegs;
582}
583
4561f347
CL
584static void
585frwr_op_destroy(struct rpcrdma_buffer *buf)
586{
587 struct rpcrdma_mw *r;
588
c14d86e5
CL
589 /* Ensure stale MWs for "buf" are no longer in flight */
590 flush_workqueue(frwr_recovery_wq);
591
4561f347
CL
592 while (!list_empty(&buf->rb_all)) {
593 r = list_entry(buf->rb_all.next, struct rpcrdma_mw, mw_all);
594 list_del(&r->mw_all);
595 __frwr_release(r);
596 kfree(r);
597 }
598}
599
a0ce85f5 600const struct rpcrdma_memreg_ops rpcrdma_frwr_memreg_ops = {
9c1b4d77 601 .ro_map = frwr_op_map,
c9918ff5 602 .ro_unmap_sync = frwr_op_unmap_sync,
6814baea 603 .ro_unmap = frwr_op_unmap,
3968cb58 604 .ro_open = frwr_op_open,
1c9351ee 605 .ro_maxpages = frwr_op_maxpages,
91e70e70 606 .ro_init = frwr_op_init,
4561f347 607 .ro_destroy = frwr_op_destroy,
a0ce85f5
CL
608 .ro_displayname = "frwr",
609};
This page took 0.117731 seconds and 5 git commands to generate.