]> asedeno.scripts.mit.edu Git - linux.git/blob - net/sunrpc/xprtrdma/frwr_ops.c
xprtrdma: Cache free MRs in each rpcrdma_req
[linux.git] / net / sunrpc / xprtrdma / frwr_ops.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2015, 2017 Oracle.  All rights reserved.
4  * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
5  */
6
7 /* Lightweight memory registration using Fast Registration Work
8  * Requests (FRWR).
9  *
10  * FRWR features ordered asynchronous registration and invalidation
11  * of arbitrarily-sized memory regions. This is the fastest and safest
12  * but most complex memory registration mode.
13  */
14
15 /* Normal operation
16  *
17  * A Memory Region is prepared for RDMA Read or Write using a FAST_REG
18  * Work Request (frwr_map). When the RDMA operation is finished, this
19  * Memory Region is invalidated using a LOCAL_INV Work Request
20  * (frwr_unmap_async and frwr_unmap_sync).
21  *
22  * 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
25  * interrupt workload.
26  */
27
28 /* Transport recovery
29  *
30  * 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.
37  *
38  * When the underlying transport disconnects, MRs that are in flight
39  * are flushed and are likely unusable. Thus all flushed MRs are
40  * destroyed. New MRs are created on demand.
41  */
42
43 #include <linux/sunrpc/rpc_rdma.h>
44 #include <linux/sunrpc/svc_rdma.h>
45
46 #include "xprt_rdma.h"
47 #include <trace/events/rpcrdma.h>
48
49 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
50 # define RPCDBG_FACILITY        RPCDBG_TRANS
51 #endif
52
53 /**
54  * frwr_is_supported - Check if device supports FRWR
55  * @device: interface adapter to check
56  *
57  * Returns true if device supports FRWR, otherwise false
58  */
59 bool frwr_is_supported(struct ib_device *device)
60 {
61         struct ib_device_attr *attrs = &device->attrs;
62
63         if (!(attrs->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS))
64                 goto out_not_supported;
65         if (attrs->max_fast_reg_page_list_len == 0)
66                 goto out_not_supported;
67         return true;
68
69 out_not_supported:
70         pr_info("rpcrdma: 'frwr' mode is not supported by device %s\n",
71                 device->name);
72         return false;
73 }
74
75 /**
76  * frwr_release_mr - Destroy one MR
77  * @mr: MR allocated by frwr_init_mr
78  *
79  */
80 void frwr_release_mr(struct rpcrdma_mr *mr)
81 {
82         int rc;
83
84         rc = ib_dereg_mr(mr->frwr.fr_mr);
85         if (rc)
86                 trace_xprtrdma_frwr_dereg(mr, rc);
87         kfree(mr->mr_sg);
88         kfree(mr);
89 }
90
91 /* MRs are dynamically allocated, so simply clean up and release the MR.
92  * A replacement MR will subsequently be allocated on demand.
93  */
94 static void
95 frwr_mr_recycle_worker(struct work_struct *work)
96 {
97         struct rpcrdma_mr *mr = container_of(work, struct rpcrdma_mr, mr_recycle);
98         struct rpcrdma_xprt *r_xprt = mr->mr_xprt;
99
100         trace_xprtrdma_mr_recycle(mr);
101
102         if (mr->mr_dir != DMA_NONE) {
103                 trace_xprtrdma_mr_unmap(mr);
104                 ib_dma_unmap_sg(r_xprt->rx_ia.ri_id->device,
105                                 mr->mr_sg, mr->mr_nents, mr->mr_dir);
106                 mr->mr_dir = DMA_NONE;
107         }
108
109         spin_lock(&r_xprt->rx_buf.rb_mrlock);
110         list_del(&mr->mr_all);
111         r_xprt->rx_stats.mrs_recycled++;
112         spin_unlock(&r_xprt->rx_buf.rb_mrlock);
113
114         frwr_release_mr(mr);
115 }
116
117 /* frwr_reset - Place MRs back on the free list
118  * @req: request to reset
119  *
120  * Used after a failed marshal. For FRWR, this means the MRs
121  * don't have to be fully released and recreated.
122  *
123  * NB: This is safe only as long as none of @req's MRs are
124  * involved with an ongoing asynchronous FAST_REG or LOCAL_INV
125  * Work Request.
126  */
127 void frwr_reset(struct rpcrdma_req *req)
128 {
129         struct rpcrdma_mr *mr;
130
131         while ((mr = rpcrdma_mr_pop(&req->rl_registered)))
132                 rpcrdma_mr_put(mr);
133 }
134
135 /**
136  * frwr_init_mr - Initialize one MR
137  * @ia: interface adapter
138  * @mr: generic MR to prepare for FRWR
139  *
140  * Returns zero if successful. Otherwise a negative errno
141  * is returned.
142  */
143 int frwr_init_mr(struct rpcrdma_ia *ia, struct rpcrdma_mr *mr)
144 {
145         unsigned int depth = ia->ri_max_frwr_depth;
146         struct scatterlist *sg;
147         struct ib_mr *frmr;
148         int rc;
149
150         /* NB: ib_alloc_mr and device drivers typically allocate
151          *     memory with GFP_KERNEL.
152          */
153         frmr = ib_alloc_mr(ia->ri_pd, ia->ri_mrtype, depth);
154         if (IS_ERR(frmr))
155                 goto out_mr_err;
156
157         sg = kcalloc(depth, sizeof(*sg), GFP_NOFS);
158         if (!sg)
159                 goto out_list_err;
160
161         mr->frwr.fr_mr = frmr;
162         mr->mr_dir = DMA_NONE;
163         INIT_LIST_HEAD(&mr->mr_list);
164         INIT_WORK(&mr->mr_recycle, frwr_mr_recycle_worker);
165         init_completion(&mr->frwr.fr_linv_done);
166
167         sg_init_table(sg, depth);
168         mr->mr_sg = sg;
169         return 0;
170
171 out_mr_err:
172         rc = PTR_ERR(frmr);
173         trace_xprtrdma_frwr_alloc(mr, rc);
174         return rc;
175
176 out_list_err:
177         ib_dereg_mr(frmr);
178         return -ENOMEM;
179 }
180
181 /**
182  * frwr_open - Prepare an endpoint for use with FRWR
183  * @ia: interface adapter this endpoint will use
184  * @ep: endpoint to prepare
185  *
186  * On success, sets:
187  *      ep->rep_attr.cap.max_send_wr
188  *      ep->rep_attr.cap.max_recv_wr
189  *      ep->rep_max_requests
190  *      ia->ri_max_segs
191  *
192  * And these FRWR-related fields:
193  *      ia->ri_max_frwr_depth
194  *      ia->ri_mrtype
195  *
196  * On failure, a negative errno is returned.
197  */
198 int frwr_open(struct rpcrdma_ia *ia, struct rpcrdma_ep *ep)
199 {
200         struct ib_device_attr *attrs = &ia->ri_id->device->attrs;
201         int max_qp_wr, depth, delta;
202
203         ia->ri_mrtype = IB_MR_TYPE_MEM_REG;
204         if (attrs->device_cap_flags & IB_DEVICE_SG_GAPS_REG)
205                 ia->ri_mrtype = IB_MR_TYPE_SG_GAPS;
206
207         /* Quirk: Some devices advertise a large max_fast_reg_page_list_len
208          * capability, but perform optimally when the MRs are not larger
209          * than a page.
210          */
211         if (attrs->max_sge_rd > 1)
212                 ia->ri_max_frwr_depth = attrs->max_sge_rd;
213         else
214                 ia->ri_max_frwr_depth = attrs->max_fast_reg_page_list_len;
215         if (ia->ri_max_frwr_depth > RPCRDMA_MAX_DATA_SEGS)
216                 ia->ri_max_frwr_depth = RPCRDMA_MAX_DATA_SEGS;
217         dprintk("RPC:       %s: max FR page list depth = %u\n",
218                 __func__, ia->ri_max_frwr_depth);
219
220         /* Add room for frwr register and invalidate WRs.
221          * 1. FRWR reg WR for head
222          * 2. FRWR invalidate WR for head
223          * 3. N FRWR reg WRs for pagelist
224          * 4. N FRWR invalidate WRs for pagelist
225          * 5. FRWR reg WR for tail
226          * 6. FRWR invalidate WR for tail
227          * 7. The RDMA_SEND WR
228          */
229         depth = 7;
230
231         /* Calculate N if the device max FRWR depth is smaller than
232          * RPCRDMA_MAX_DATA_SEGS.
233          */
234         if (ia->ri_max_frwr_depth < RPCRDMA_MAX_DATA_SEGS) {
235                 delta = RPCRDMA_MAX_DATA_SEGS - ia->ri_max_frwr_depth;
236                 do {
237                         depth += 2; /* FRWR reg + invalidate */
238                         delta -= ia->ri_max_frwr_depth;
239                 } while (delta > 0);
240         }
241
242         max_qp_wr = ia->ri_id->device->attrs.max_qp_wr;
243         max_qp_wr -= RPCRDMA_BACKWARD_WRS;
244         max_qp_wr -= 1;
245         if (max_qp_wr < RPCRDMA_MIN_SLOT_TABLE)
246                 return -ENOMEM;
247         if (ep->rep_max_requests > max_qp_wr)
248                 ep->rep_max_requests = max_qp_wr;
249         ep->rep_attr.cap.max_send_wr = ep->rep_max_requests * depth;
250         if (ep->rep_attr.cap.max_send_wr > max_qp_wr) {
251                 ep->rep_max_requests = max_qp_wr / depth;
252                 if (!ep->rep_max_requests)
253                         return -EINVAL;
254                 ep->rep_attr.cap.max_send_wr = ep->rep_max_requests * depth;
255         }
256         ep->rep_attr.cap.max_send_wr += RPCRDMA_BACKWARD_WRS;
257         ep->rep_attr.cap.max_send_wr += 1; /* for ib_drain_sq */
258         ep->rep_attr.cap.max_recv_wr = ep->rep_max_requests;
259         ep->rep_attr.cap.max_recv_wr += RPCRDMA_BACKWARD_WRS;
260         ep->rep_attr.cap.max_recv_wr += 1; /* for ib_drain_rq */
261
262         ia->ri_max_segs =
263                 DIV_ROUND_UP(RPCRDMA_MAX_DATA_SEGS, ia->ri_max_frwr_depth);
264         /* Reply chunks require segments for head and tail buffers */
265         ia->ri_max_segs += 2;
266         if (ia->ri_max_segs > RPCRDMA_MAX_HDR_SEGS)
267                 ia->ri_max_segs = RPCRDMA_MAX_HDR_SEGS;
268         return 0;
269 }
270
271 /**
272  * frwr_maxpages - Compute size of largest payload
273  * @r_xprt: transport
274  *
275  * Returns maximum size of an RPC message, in pages.
276  *
277  * FRWR mode conveys a list of pages per chunk segment. The
278  * maximum length of that list is the FRWR page list depth.
279  */
280 size_t frwr_maxpages(struct rpcrdma_xprt *r_xprt)
281 {
282         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
283
284         return min_t(unsigned int, RPCRDMA_MAX_DATA_SEGS,
285                      (ia->ri_max_segs - 2) * ia->ri_max_frwr_depth);
286 }
287
288 /**
289  * frwr_map - Register a memory region
290  * @r_xprt: controlling transport
291  * @seg: memory region co-ordinates
292  * @nsegs: number of segments remaining
293  * @writing: true when RDMA Write will be used
294  * @xid: XID of RPC using the registered memory
295  * @mr: MR to fill in
296  *
297  * Prepare a REG_MR Work Request to register a memory region
298  * for remote access via RDMA READ or RDMA WRITE.
299  *
300  * Returns the next segment or a negative errno pointer.
301  * On success, @mr is filled in.
302  */
303 struct rpcrdma_mr_seg *frwr_map(struct rpcrdma_xprt *r_xprt,
304                                 struct rpcrdma_mr_seg *seg,
305                                 int nsegs, bool writing, __be32 xid,
306                                 struct rpcrdma_mr *mr)
307 {
308         struct rpcrdma_ia *ia = &r_xprt->rx_ia;
309         struct ib_reg_wr *reg_wr;
310         struct ib_mr *ibmr;
311         int i, n;
312         u8 key;
313
314         if (nsegs > ia->ri_max_frwr_depth)
315                 nsegs = ia->ri_max_frwr_depth;
316         for (i = 0; i < nsegs;) {
317                 if (seg->mr_page)
318                         sg_set_page(&mr->mr_sg[i],
319                                     seg->mr_page,
320                                     seg->mr_len,
321                                     offset_in_page(seg->mr_offset));
322                 else
323                         sg_set_buf(&mr->mr_sg[i], seg->mr_offset,
324                                    seg->mr_len);
325
326                 ++seg;
327                 ++i;
328                 if (ia->ri_mrtype == IB_MR_TYPE_SG_GAPS)
329                         continue;
330                 if ((i < nsegs && offset_in_page(seg->mr_offset)) ||
331                     offset_in_page((seg-1)->mr_offset + (seg-1)->mr_len))
332                         break;
333         }
334         mr->mr_dir = rpcrdma_data_dir(writing);
335
336         mr->mr_nents =
337                 ib_dma_map_sg(ia->ri_id->device, mr->mr_sg, i, mr->mr_dir);
338         if (!mr->mr_nents)
339                 goto out_dmamap_err;
340
341         ibmr = mr->frwr.fr_mr;
342         n = ib_map_mr_sg(ibmr, mr->mr_sg, mr->mr_nents, NULL, PAGE_SIZE);
343         if (unlikely(n != mr->mr_nents))
344                 goto out_mapmr_err;
345
346         ibmr->iova &= 0x00000000ffffffff;
347         ibmr->iova |= ((u64)be32_to_cpu(xid)) << 32;
348         key = (u8)(ibmr->rkey & 0x000000FF);
349         ib_update_fast_reg_key(ibmr, ++key);
350
351         reg_wr = &mr->frwr.fr_regwr;
352         reg_wr->mr = ibmr;
353         reg_wr->key = ibmr->rkey;
354         reg_wr->access = writing ?
355                          IB_ACCESS_REMOTE_WRITE | IB_ACCESS_LOCAL_WRITE :
356                          IB_ACCESS_REMOTE_READ;
357
358         mr->mr_handle = ibmr->rkey;
359         mr->mr_length = ibmr->length;
360         mr->mr_offset = ibmr->iova;
361         trace_xprtrdma_mr_map(mr);
362
363         return seg;
364
365 out_dmamap_err:
366         mr->mr_dir = DMA_NONE;
367         trace_xprtrdma_frwr_sgerr(mr, i);
368         return ERR_PTR(-EIO);
369
370 out_mapmr_err:
371         trace_xprtrdma_frwr_maperr(mr, n);
372         return ERR_PTR(-EIO);
373 }
374
375 /**
376  * frwr_wc_fastreg - Invoked by RDMA provider for a flushed FastReg WC
377  * @cq: completion queue (ignored)
378  * @wc: completed WR
379  *
380  */
381 static void frwr_wc_fastreg(struct ib_cq *cq, struct ib_wc *wc)
382 {
383         struct ib_cqe *cqe = wc->wr_cqe;
384         struct rpcrdma_frwr *frwr =
385                 container_of(cqe, struct rpcrdma_frwr, fr_cqe);
386
387         /* WARNING: Only wr_cqe and status are reliable at this point */
388         trace_xprtrdma_wc_fastreg(wc, frwr);
389         /* The MR will get recycled when the associated req is retransmitted */
390 }
391
392 /**
393  * frwr_send - post Send WR containing the RPC Call message
394  * @ia: interface adapter
395  * @req: Prepared RPC Call
396  *
397  * For FRWR, chain any FastReg WRs to the Send WR. Only a
398  * single ib_post_send call is needed to register memory
399  * and then post the Send WR.
400  *
401  * Returns the result of ib_post_send.
402  */
403 int frwr_send(struct rpcrdma_ia *ia, struct rpcrdma_req *req)
404 {
405         struct ib_send_wr *post_wr;
406         struct rpcrdma_mr *mr;
407
408         post_wr = &req->rl_sendctx->sc_wr;
409         list_for_each_entry(mr, &req->rl_registered, mr_list) {
410                 struct rpcrdma_frwr *frwr;
411
412                 frwr = &mr->frwr;
413
414                 frwr->fr_cqe.done = frwr_wc_fastreg;
415                 frwr->fr_regwr.wr.next = post_wr;
416                 frwr->fr_regwr.wr.wr_cqe = &frwr->fr_cqe;
417                 frwr->fr_regwr.wr.num_sge = 0;
418                 frwr->fr_regwr.wr.opcode = IB_WR_REG_MR;
419                 frwr->fr_regwr.wr.send_flags = 0;
420
421                 post_wr = &frwr->fr_regwr.wr;
422         }
423
424         /* If ib_post_send fails, the next ->send_request for
425          * @req will queue these MRs for recovery.
426          */
427         return ib_post_send(ia->ri_id->qp, post_wr, NULL);
428 }
429
430 /**
431  * frwr_reminv - handle a remotely invalidated mr on the @mrs list
432  * @rep: Received reply
433  * @mrs: list of MRs to check
434  *
435  */
436 void frwr_reminv(struct rpcrdma_rep *rep, struct list_head *mrs)
437 {
438         struct rpcrdma_mr *mr;
439
440         list_for_each_entry(mr, mrs, mr_list)
441                 if (mr->mr_handle == rep->rr_inv_rkey) {
442                         list_del_init(&mr->mr_list);
443                         trace_xprtrdma_mr_remoteinv(mr);
444                         rpcrdma_mr_put(mr);
445                         break;  /* only one invalidated MR per RPC */
446                 }
447 }
448
449 static void __frwr_release_mr(struct ib_wc *wc, struct rpcrdma_mr *mr)
450 {
451         if (wc->status != IB_WC_SUCCESS)
452                 rpcrdma_mr_recycle(mr);
453         else
454                 rpcrdma_mr_put(mr);
455 }
456
457 /**
458  * frwr_wc_localinv - Invoked by RDMA provider for a LOCAL_INV WC
459  * @cq: completion queue (ignored)
460  * @wc: completed WR
461  *
462  */
463 static void frwr_wc_localinv(struct ib_cq *cq, struct ib_wc *wc)
464 {
465         struct ib_cqe *cqe = wc->wr_cqe;
466         struct rpcrdma_frwr *frwr =
467                 container_of(cqe, struct rpcrdma_frwr, fr_cqe);
468         struct rpcrdma_mr *mr = container_of(frwr, struct rpcrdma_mr, frwr);
469
470         /* WARNING: Only wr_cqe and status are reliable at this point */
471         trace_xprtrdma_wc_li(wc, frwr);
472         __frwr_release_mr(wc, mr);
473 }
474
475 /**
476  * frwr_wc_localinv_wake - Invoked by RDMA provider for a LOCAL_INV WC
477  * @cq: completion queue (ignored)
478  * @wc: completed WR
479  *
480  * Awaken anyone waiting for an MR to finish being fenced.
481  */
482 static void frwr_wc_localinv_wake(struct ib_cq *cq, struct ib_wc *wc)
483 {
484         struct ib_cqe *cqe = wc->wr_cqe;
485         struct rpcrdma_frwr *frwr =
486                 container_of(cqe, struct rpcrdma_frwr, fr_cqe);
487         struct rpcrdma_mr *mr = container_of(frwr, struct rpcrdma_mr, frwr);
488
489         /* WARNING: Only wr_cqe and status are reliable at this point */
490         trace_xprtrdma_wc_li_wake(wc, frwr);
491         __frwr_release_mr(wc, mr);
492         complete(&frwr->fr_linv_done);
493 }
494
495 /**
496  * frwr_unmap_sync - invalidate memory regions that were registered for @req
497  * @r_xprt: controlling transport instance
498  * @req: rpcrdma_req with a non-empty list of MRs to process
499  *
500  * Sleeps until it is safe for the host CPU to access the previously mapped
501  * memory regions. This guarantees that registered MRs are properly fenced
502  * from the server before the RPC consumer accesses the data in them. It
503  * also ensures proper Send flow control: waking the next RPC waits until
504  * this RPC has relinquished all its Send Queue entries.
505  */
506 void frwr_unmap_sync(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
507 {
508         struct ib_send_wr *first, **prev, *last;
509         const struct ib_send_wr *bad_wr;
510         struct rpcrdma_frwr *frwr;
511         struct rpcrdma_mr *mr;
512         int rc;
513
514         /* ORDER: Invalidate all of the MRs first
515          *
516          * Chain the LOCAL_INV Work Requests and post them with
517          * a single ib_post_send() call.
518          */
519         frwr = NULL;
520         prev = &first;
521         while ((mr = rpcrdma_mr_pop(&req->rl_registered))) {
522
523                 trace_xprtrdma_mr_localinv(mr);
524                 r_xprt->rx_stats.local_inv_needed++;
525
526                 frwr = &mr->frwr;
527                 frwr->fr_cqe.done = frwr_wc_localinv;
528                 last = &frwr->fr_invwr;
529                 last->next = NULL;
530                 last->wr_cqe = &frwr->fr_cqe;
531                 last->sg_list = NULL;
532                 last->num_sge = 0;
533                 last->opcode = IB_WR_LOCAL_INV;
534                 last->send_flags = IB_SEND_SIGNALED;
535                 last->ex.invalidate_rkey = mr->mr_handle;
536
537                 *prev = last;
538                 prev = &last->next;
539         }
540
541         /* Strong send queue ordering guarantees that when the
542          * last WR in the chain completes, all WRs in the chain
543          * are complete.
544          */
545         frwr->fr_cqe.done = frwr_wc_localinv_wake;
546         reinit_completion(&frwr->fr_linv_done);
547
548         /* Transport disconnect drains the receive CQ before it
549          * replaces the QP. The RPC reply handler won't call us
550          * unless ri_id->qp is a valid pointer.
551          */
552         bad_wr = NULL;
553         rc = ib_post_send(r_xprt->rx_ia.ri_id->qp, first, &bad_wr);
554         trace_xprtrdma_post_send(req, rc);
555
556         /* The final LOCAL_INV WR in the chain is supposed to
557          * do the wake. If it was never posted, the wake will
558          * not happen, so don't wait in that case.
559          */
560         if (bad_wr != first)
561                 wait_for_completion(&frwr->fr_linv_done);
562         if (!rc)
563                 return;
564
565         /* Recycle MRs in the LOCAL_INV chain that did not get posted.
566          */
567         while (bad_wr) {
568                 frwr = container_of(bad_wr, struct rpcrdma_frwr,
569                                     fr_invwr);
570                 mr = container_of(frwr, struct rpcrdma_mr, frwr);
571                 bad_wr = bad_wr->next;
572
573                 list_del_init(&mr->mr_list);
574                 rpcrdma_mr_recycle(mr);
575         }
576 }
577
578 /**
579  * frwr_wc_localinv_done - Invoked by RDMA provider for a signaled LOCAL_INV WC
580  * @cq: completion queue (ignored)
581  * @wc: completed WR
582  *
583  */
584 static void frwr_wc_localinv_done(struct ib_cq *cq, struct ib_wc *wc)
585 {
586         struct ib_cqe *cqe = wc->wr_cqe;
587         struct rpcrdma_frwr *frwr =
588                 container_of(cqe, struct rpcrdma_frwr, fr_cqe);
589         struct rpcrdma_mr *mr = container_of(frwr, struct rpcrdma_mr, frwr);
590         struct rpcrdma_rep *rep = mr->mr_req->rl_reply;
591
592         /* WARNING: Only wr_cqe and status are reliable at this point */
593         trace_xprtrdma_wc_li_done(wc, frwr);
594         __frwr_release_mr(wc, mr);
595
596         /* Ensure @rep is generated before __frwr_release_mr */
597         smp_rmb();
598         rpcrdma_complete_rqst(rep);
599 }
600
601 /**
602  * frwr_unmap_async - invalidate memory regions that were registered for @req
603  * @r_xprt: controlling transport instance
604  * @req: rpcrdma_req with a non-empty list of MRs to process
605  *
606  * This guarantees that registered MRs are properly fenced from the
607  * server before the RPC consumer accesses the data in them. It also
608  * ensures proper Send flow control: waking the next RPC waits until
609  * this RPC has relinquished all its Send Queue entries.
610  */
611 void frwr_unmap_async(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req)
612 {
613         struct ib_send_wr *first, *last, **prev;
614         const struct ib_send_wr *bad_wr;
615         struct rpcrdma_frwr *frwr;
616         struct rpcrdma_mr *mr;
617         int rc;
618
619         /* Chain the LOCAL_INV Work Requests and post them with
620          * a single ib_post_send() call.
621          */
622         frwr = NULL;
623         prev = &first;
624         while ((mr = rpcrdma_mr_pop(&req->rl_registered))) {
625
626                 trace_xprtrdma_mr_localinv(mr);
627                 r_xprt->rx_stats.local_inv_needed++;
628
629                 frwr = &mr->frwr;
630                 frwr->fr_cqe.done = frwr_wc_localinv;
631                 last = &frwr->fr_invwr;
632                 last->next = NULL;
633                 last->wr_cqe = &frwr->fr_cqe;
634                 last->sg_list = NULL;
635                 last->num_sge = 0;
636                 last->opcode = IB_WR_LOCAL_INV;
637                 last->send_flags = IB_SEND_SIGNALED;
638                 last->ex.invalidate_rkey = mr->mr_handle;
639
640                 *prev = last;
641                 prev = &last->next;
642         }
643
644         /* Strong send queue ordering guarantees that when the
645          * last WR in the chain completes, all WRs in the chain
646          * are complete. The last completion will wake up the
647          * RPC waiter.
648          */
649         frwr->fr_cqe.done = frwr_wc_localinv_done;
650
651         /* Transport disconnect drains the receive CQ before it
652          * replaces the QP. The RPC reply handler won't call us
653          * unless ri_id->qp is a valid pointer.
654          */
655         bad_wr = NULL;
656         rc = ib_post_send(r_xprt->rx_ia.ri_id->qp, first, &bad_wr);
657         trace_xprtrdma_post_send(req, rc);
658         if (!rc)
659                 return;
660
661         /* Recycle MRs in the LOCAL_INV chain that did not get posted.
662          */
663         while (bad_wr) {
664                 frwr = container_of(bad_wr, struct rpcrdma_frwr, fr_invwr);
665                 mr = container_of(frwr, struct rpcrdma_mr, frwr);
666                 bad_wr = bad_wr->next;
667
668                 rpcrdma_mr_recycle(mr);
669         }
670
671         /* The final LOCAL_INV WR in the chain is supposed to
672          * do the wake. If it was never posted, the wake will
673          * not happen, so wake here in that case.
674          */
675         rpcrdma_complete_rqst(req->rl_reply);
676 }