svcrdma: Replace GFP_KERNEL in a loop with GFP_NOFAIL
[deliverable/linux.git] / net / sunrpc / xprtrdma / svc_rdma_transport.c
1 /*
2 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
3 * Copyright (c) 2005-2007 Network Appliance, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the BSD-type
9 * license below:
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 *
18 * Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials provided
21 * with the distribution.
22 *
23 * Neither the name of the Network Appliance, Inc. nor the names of
24 * its contributors may be used to endorse or promote products
25 * derived from this software without specific prior written
26 * permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Author: Tom Tucker <tom@opengridcomputing.com>
41 */
42
43 #include <linux/sunrpc/svc_xprt.h>
44 #include <linux/sunrpc/debug.h>
45 #include <linux/sunrpc/rpc_rdma.h>
46 #include <linux/interrupt.h>
47 #include <linux/sched.h>
48 #include <linux/slab.h>
49 #include <linux/spinlock.h>
50 #include <linux/workqueue.h>
51 #include <rdma/ib_verbs.h>
52 #include <rdma/rdma_cm.h>
53 #include <linux/sunrpc/svc_rdma.h>
54 #include <linux/export.h>
55 #include "xprt_rdma.h"
56
57 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
58
59 static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
60 struct net *net,
61 struct sockaddr *sa, int salen,
62 int flags);
63 static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt);
64 static void svc_rdma_release_rqst(struct svc_rqst *);
65 static void dto_tasklet_func(unsigned long data);
66 static void svc_rdma_detach(struct svc_xprt *xprt);
67 static void svc_rdma_free(struct svc_xprt *xprt);
68 static int svc_rdma_has_wspace(struct svc_xprt *xprt);
69 static int svc_rdma_secure_port(struct svc_rqst *);
70 static void rq_cq_reap(struct svcxprt_rdma *xprt);
71 static void sq_cq_reap(struct svcxprt_rdma *xprt);
72
73 static DECLARE_TASKLET(dto_tasklet, dto_tasklet_func, 0UL);
74 static DEFINE_SPINLOCK(dto_lock);
75 static LIST_HEAD(dto_xprt_q);
76
77 static struct svc_xprt_ops svc_rdma_ops = {
78 .xpo_create = svc_rdma_create,
79 .xpo_recvfrom = svc_rdma_recvfrom,
80 .xpo_sendto = svc_rdma_sendto,
81 .xpo_release_rqst = svc_rdma_release_rqst,
82 .xpo_detach = svc_rdma_detach,
83 .xpo_free = svc_rdma_free,
84 .xpo_prep_reply_hdr = svc_rdma_prep_reply_hdr,
85 .xpo_has_wspace = svc_rdma_has_wspace,
86 .xpo_accept = svc_rdma_accept,
87 .xpo_secure_port = svc_rdma_secure_port,
88 };
89
90 struct svc_xprt_class svc_rdma_class = {
91 .xcl_name = "rdma",
92 .xcl_owner = THIS_MODULE,
93 .xcl_ops = &svc_rdma_ops,
94 .xcl_max_payload = RPCSVC_MAXPAYLOAD_RDMA,
95 .xcl_ident = XPRT_TRANSPORT_RDMA,
96 };
97
98 struct svc_rdma_op_ctxt *svc_rdma_get_context(struct svcxprt_rdma *xprt)
99 {
100 struct svc_rdma_op_ctxt *ctxt;
101
102 ctxt = kmem_cache_alloc(svc_rdma_ctxt_cachep,
103 GFP_KERNEL | __GFP_NOFAIL);
104 ctxt->xprt = xprt;
105 INIT_LIST_HEAD(&ctxt->dto_q);
106 ctxt->count = 0;
107 ctxt->frmr = NULL;
108 atomic_inc(&xprt->sc_ctxt_used);
109 return ctxt;
110 }
111
112 void svc_rdma_unmap_dma(struct svc_rdma_op_ctxt *ctxt)
113 {
114 struct svcxprt_rdma *xprt = ctxt->xprt;
115 int i;
116 for (i = 0; i < ctxt->count && ctxt->sge[i].length; i++) {
117 /*
118 * Unmap the DMA addr in the SGE if the lkey matches
119 * the sc_dma_lkey, otherwise, ignore it since it is
120 * an FRMR lkey and will be unmapped later when the
121 * last WR that uses it completes.
122 */
123 if (ctxt->sge[i].lkey == xprt->sc_dma_lkey) {
124 atomic_dec(&xprt->sc_dma_used);
125 ib_dma_unmap_page(xprt->sc_cm_id->device,
126 ctxt->sge[i].addr,
127 ctxt->sge[i].length,
128 ctxt->direction);
129 }
130 }
131 }
132
133 void svc_rdma_put_context(struct svc_rdma_op_ctxt *ctxt, int free_pages)
134 {
135 struct svcxprt_rdma *xprt;
136 int i;
137
138 xprt = ctxt->xprt;
139 if (free_pages)
140 for (i = 0; i < ctxt->count; i++)
141 put_page(ctxt->pages[i]);
142
143 kmem_cache_free(svc_rdma_ctxt_cachep, ctxt);
144 atomic_dec(&xprt->sc_ctxt_used);
145 }
146
147 /*
148 * Temporary NFS req mappings are shared across all transport
149 * instances. These are short lived and should be bounded by the number
150 * of concurrent server threads * depth of the SQ.
151 */
152 struct svc_rdma_req_map *svc_rdma_get_req_map(void)
153 {
154 struct svc_rdma_req_map *map;
155 map = kmem_cache_alloc(svc_rdma_map_cachep,
156 GFP_KERNEL | __GFP_NOFAIL);
157 map->count = 0;
158 return map;
159 }
160
161 void svc_rdma_put_req_map(struct svc_rdma_req_map *map)
162 {
163 kmem_cache_free(svc_rdma_map_cachep, map);
164 }
165
166 /* ib_cq event handler */
167 static void cq_event_handler(struct ib_event *event, void *context)
168 {
169 struct svc_xprt *xprt = context;
170 dprintk("svcrdma: received CQ event id=%d, context=%p\n",
171 event->event, context);
172 set_bit(XPT_CLOSE, &xprt->xpt_flags);
173 }
174
175 /* QP event handler */
176 static void qp_event_handler(struct ib_event *event, void *context)
177 {
178 struct svc_xprt *xprt = context;
179
180 switch (event->event) {
181 /* These are considered benign events */
182 case IB_EVENT_PATH_MIG:
183 case IB_EVENT_COMM_EST:
184 case IB_EVENT_SQ_DRAINED:
185 case IB_EVENT_QP_LAST_WQE_REACHED:
186 dprintk("svcrdma: QP event %d received for QP=%p\n",
187 event->event, event->element.qp);
188 break;
189 /* These are considered fatal events */
190 case IB_EVENT_PATH_MIG_ERR:
191 case IB_EVENT_QP_FATAL:
192 case IB_EVENT_QP_REQ_ERR:
193 case IB_EVENT_QP_ACCESS_ERR:
194 case IB_EVENT_DEVICE_FATAL:
195 default:
196 dprintk("svcrdma: QP ERROR event %d received for QP=%p, "
197 "closing transport\n",
198 event->event, event->element.qp);
199 set_bit(XPT_CLOSE, &xprt->xpt_flags);
200 break;
201 }
202 }
203
204 /*
205 * Data Transfer Operation Tasklet
206 *
207 * Walks a list of transports with I/O pending, removing entries as
208 * they are added to the server's I/O pending list. Two bits indicate
209 * if SQ, RQ, or both have I/O pending. The dto_lock is an irqsave
210 * spinlock that serializes access to the transport list with the RQ
211 * and SQ interrupt handlers.
212 */
213 static void dto_tasklet_func(unsigned long data)
214 {
215 struct svcxprt_rdma *xprt;
216 unsigned long flags;
217
218 spin_lock_irqsave(&dto_lock, flags);
219 while (!list_empty(&dto_xprt_q)) {
220 xprt = list_entry(dto_xprt_q.next,
221 struct svcxprt_rdma, sc_dto_q);
222 list_del_init(&xprt->sc_dto_q);
223 spin_unlock_irqrestore(&dto_lock, flags);
224
225 rq_cq_reap(xprt);
226 sq_cq_reap(xprt);
227
228 svc_xprt_put(&xprt->sc_xprt);
229 spin_lock_irqsave(&dto_lock, flags);
230 }
231 spin_unlock_irqrestore(&dto_lock, flags);
232 }
233
234 /*
235 * Receive Queue Completion Handler
236 *
237 * Since an RQ completion handler is called on interrupt context, we
238 * need to defer the handling of the I/O to a tasklet
239 */
240 static void rq_comp_handler(struct ib_cq *cq, void *cq_context)
241 {
242 struct svcxprt_rdma *xprt = cq_context;
243 unsigned long flags;
244
245 /* Guard against unconditional flush call for destroyed QP */
246 if (atomic_read(&xprt->sc_xprt.xpt_ref.refcount)==0)
247 return;
248
249 /*
250 * Set the bit regardless of whether or not it's on the list
251 * because it may be on the list already due to an SQ
252 * completion.
253 */
254 set_bit(RDMAXPRT_RQ_PENDING, &xprt->sc_flags);
255
256 /*
257 * If this transport is not already on the DTO transport queue,
258 * add it
259 */
260 spin_lock_irqsave(&dto_lock, flags);
261 if (list_empty(&xprt->sc_dto_q)) {
262 svc_xprt_get(&xprt->sc_xprt);
263 list_add_tail(&xprt->sc_dto_q, &dto_xprt_q);
264 }
265 spin_unlock_irqrestore(&dto_lock, flags);
266
267 /* Tasklet does all the work to avoid irqsave locks. */
268 tasklet_schedule(&dto_tasklet);
269 }
270
271 /*
272 * rq_cq_reap - Process the RQ CQ.
273 *
274 * Take all completing WC off the CQE and enqueue the associated DTO
275 * context on the dto_q for the transport.
276 *
277 * Note that caller must hold a transport reference.
278 */
279 static void rq_cq_reap(struct svcxprt_rdma *xprt)
280 {
281 int ret;
282 struct ib_wc wc;
283 struct svc_rdma_op_ctxt *ctxt = NULL;
284
285 if (!test_and_clear_bit(RDMAXPRT_RQ_PENDING, &xprt->sc_flags))
286 return;
287
288 ib_req_notify_cq(xprt->sc_rq_cq, IB_CQ_NEXT_COMP);
289 atomic_inc(&rdma_stat_rq_poll);
290
291 while ((ret = ib_poll_cq(xprt->sc_rq_cq, 1, &wc)) > 0) {
292 ctxt = (struct svc_rdma_op_ctxt *)(unsigned long)wc.wr_id;
293 ctxt->wc_status = wc.status;
294 ctxt->byte_len = wc.byte_len;
295 svc_rdma_unmap_dma(ctxt);
296 if (wc.status != IB_WC_SUCCESS) {
297 /* Close the transport */
298 dprintk("svcrdma: transport closing putting ctxt %p\n", ctxt);
299 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
300 svc_rdma_put_context(ctxt, 1);
301 svc_xprt_put(&xprt->sc_xprt);
302 continue;
303 }
304 spin_lock_bh(&xprt->sc_rq_dto_lock);
305 list_add_tail(&ctxt->dto_q, &xprt->sc_rq_dto_q);
306 spin_unlock_bh(&xprt->sc_rq_dto_lock);
307 svc_xprt_put(&xprt->sc_xprt);
308 }
309
310 if (ctxt)
311 atomic_inc(&rdma_stat_rq_prod);
312
313 set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
314 /*
315 * If data arrived before established event,
316 * don't enqueue. This defers RPC I/O until the
317 * RDMA connection is complete.
318 */
319 if (!test_bit(RDMAXPRT_CONN_PENDING, &xprt->sc_flags))
320 svc_xprt_enqueue(&xprt->sc_xprt);
321 }
322
323 /*
324 * Process a completion context
325 */
326 static void process_context(struct svcxprt_rdma *xprt,
327 struct svc_rdma_op_ctxt *ctxt)
328 {
329 svc_rdma_unmap_dma(ctxt);
330
331 switch (ctxt->wr_op) {
332 case IB_WR_SEND:
333 if (ctxt->frmr)
334 pr_err("svcrdma: SEND: ctxt->frmr != NULL\n");
335 svc_rdma_put_context(ctxt, 1);
336 break;
337
338 case IB_WR_RDMA_WRITE:
339 if (ctxt->frmr)
340 pr_err("svcrdma: WRITE: ctxt->frmr != NULL\n");
341 svc_rdma_put_context(ctxt, 0);
342 break;
343
344 case IB_WR_RDMA_READ:
345 case IB_WR_RDMA_READ_WITH_INV:
346 svc_rdma_put_frmr(xprt, ctxt->frmr);
347 if (test_bit(RDMACTXT_F_LAST_CTXT, &ctxt->flags)) {
348 struct svc_rdma_op_ctxt *read_hdr = ctxt->read_hdr;
349 if (read_hdr) {
350 spin_lock_bh(&xprt->sc_rq_dto_lock);
351 set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
352 list_add_tail(&read_hdr->dto_q,
353 &xprt->sc_read_complete_q);
354 spin_unlock_bh(&xprt->sc_rq_dto_lock);
355 } else {
356 pr_err("svcrdma: ctxt->read_hdr == NULL\n");
357 }
358 svc_xprt_enqueue(&xprt->sc_xprt);
359 }
360 svc_rdma_put_context(ctxt, 0);
361 break;
362
363 default:
364 printk(KERN_ERR "svcrdma: unexpected completion type, "
365 "opcode=%d\n",
366 ctxt->wr_op);
367 break;
368 }
369 }
370
371 /*
372 * Send Queue Completion Handler - potentially called on interrupt context.
373 *
374 * Note that caller must hold a transport reference.
375 */
376 static void sq_cq_reap(struct svcxprt_rdma *xprt)
377 {
378 struct svc_rdma_op_ctxt *ctxt = NULL;
379 struct ib_wc wc_a[6];
380 struct ib_wc *wc;
381 struct ib_cq *cq = xprt->sc_sq_cq;
382 int ret;
383
384 memset(wc_a, 0, sizeof(wc_a));
385
386 if (!test_and_clear_bit(RDMAXPRT_SQ_PENDING, &xprt->sc_flags))
387 return;
388
389 ib_req_notify_cq(xprt->sc_sq_cq, IB_CQ_NEXT_COMP);
390 atomic_inc(&rdma_stat_sq_poll);
391 while ((ret = ib_poll_cq(cq, ARRAY_SIZE(wc_a), wc_a)) > 0) {
392 int i;
393
394 for (i = 0; i < ret; i++) {
395 wc = &wc_a[i];
396 if (wc->status != IB_WC_SUCCESS) {
397 dprintk("svcrdma: sq wc err status %d\n",
398 wc->status);
399
400 /* Close the transport */
401 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
402 }
403
404 /* Decrement used SQ WR count */
405 atomic_dec(&xprt->sc_sq_count);
406 wake_up(&xprt->sc_send_wait);
407
408 ctxt = (struct svc_rdma_op_ctxt *)
409 (unsigned long)wc->wr_id;
410 if (ctxt)
411 process_context(xprt, ctxt);
412
413 svc_xprt_put(&xprt->sc_xprt);
414 }
415 }
416
417 if (ctxt)
418 atomic_inc(&rdma_stat_sq_prod);
419 }
420
421 static void sq_comp_handler(struct ib_cq *cq, void *cq_context)
422 {
423 struct svcxprt_rdma *xprt = cq_context;
424 unsigned long flags;
425
426 /* Guard against unconditional flush call for destroyed QP */
427 if (atomic_read(&xprt->sc_xprt.xpt_ref.refcount)==0)
428 return;
429
430 /*
431 * Set the bit regardless of whether or not it's on the list
432 * because it may be on the list already due to an RQ
433 * completion.
434 */
435 set_bit(RDMAXPRT_SQ_PENDING, &xprt->sc_flags);
436
437 /*
438 * If this transport is not already on the DTO transport queue,
439 * add it
440 */
441 spin_lock_irqsave(&dto_lock, flags);
442 if (list_empty(&xprt->sc_dto_q)) {
443 svc_xprt_get(&xprt->sc_xprt);
444 list_add_tail(&xprt->sc_dto_q, &dto_xprt_q);
445 }
446 spin_unlock_irqrestore(&dto_lock, flags);
447
448 /* Tasklet does all the work to avoid irqsave locks. */
449 tasklet_schedule(&dto_tasklet);
450 }
451
452 static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *serv,
453 int listener)
454 {
455 struct svcxprt_rdma *cma_xprt = kzalloc(sizeof *cma_xprt, GFP_KERNEL);
456
457 if (!cma_xprt)
458 return NULL;
459 svc_xprt_init(&init_net, &svc_rdma_class, &cma_xprt->sc_xprt, serv);
460 INIT_LIST_HEAD(&cma_xprt->sc_accept_q);
461 INIT_LIST_HEAD(&cma_xprt->sc_dto_q);
462 INIT_LIST_HEAD(&cma_xprt->sc_rq_dto_q);
463 INIT_LIST_HEAD(&cma_xprt->sc_read_complete_q);
464 INIT_LIST_HEAD(&cma_xprt->sc_frmr_q);
465 init_waitqueue_head(&cma_xprt->sc_send_wait);
466
467 spin_lock_init(&cma_xprt->sc_lock);
468 spin_lock_init(&cma_xprt->sc_rq_dto_lock);
469 spin_lock_init(&cma_xprt->sc_frmr_q_lock);
470
471 cma_xprt->sc_ord = svcrdma_ord;
472
473 cma_xprt->sc_max_req_size = svcrdma_max_req_size;
474 cma_xprt->sc_max_requests = svcrdma_max_requests;
475 cma_xprt->sc_sq_depth = svcrdma_max_requests * RPCRDMA_SQ_DEPTH_MULT;
476 atomic_set(&cma_xprt->sc_sq_count, 0);
477 atomic_set(&cma_xprt->sc_ctxt_used, 0);
478
479 if (listener)
480 set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);
481
482 return cma_xprt;
483 }
484
485 int svc_rdma_post_recv(struct svcxprt_rdma *xprt)
486 {
487 struct ib_recv_wr recv_wr, *bad_recv_wr;
488 struct svc_rdma_op_ctxt *ctxt;
489 struct page *page;
490 dma_addr_t pa;
491 int sge_no;
492 int buflen;
493 int ret;
494
495 ctxt = svc_rdma_get_context(xprt);
496 buflen = 0;
497 ctxt->direction = DMA_FROM_DEVICE;
498 for (sge_no = 0; buflen < xprt->sc_max_req_size; sge_no++) {
499 if (sge_no >= xprt->sc_max_sge) {
500 pr_err("svcrdma: Too many sges (%d)\n", sge_no);
501 goto err_put_ctxt;
502 }
503 page = alloc_page(GFP_KERNEL | __GFP_NOFAIL);
504 ctxt->pages[sge_no] = page;
505 pa = ib_dma_map_page(xprt->sc_cm_id->device,
506 page, 0, PAGE_SIZE,
507 DMA_FROM_DEVICE);
508 if (ib_dma_mapping_error(xprt->sc_cm_id->device, pa))
509 goto err_put_ctxt;
510 atomic_inc(&xprt->sc_dma_used);
511 ctxt->sge[sge_no].addr = pa;
512 ctxt->sge[sge_no].length = PAGE_SIZE;
513 ctxt->sge[sge_no].lkey = xprt->sc_dma_lkey;
514 ctxt->count = sge_no + 1;
515 buflen += PAGE_SIZE;
516 }
517 recv_wr.next = NULL;
518 recv_wr.sg_list = &ctxt->sge[0];
519 recv_wr.num_sge = ctxt->count;
520 recv_wr.wr_id = (u64)(unsigned long)ctxt;
521
522 svc_xprt_get(&xprt->sc_xprt);
523 ret = ib_post_recv(xprt->sc_qp, &recv_wr, &bad_recv_wr);
524 if (ret) {
525 svc_rdma_unmap_dma(ctxt);
526 svc_rdma_put_context(ctxt, 1);
527 svc_xprt_put(&xprt->sc_xprt);
528 }
529 return ret;
530
531 err_put_ctxt:
532 svc_rdma_unmap_dma(ctxt);
533 svc_rdma_put_context(ctxt, 1);
534 return -ENOMEM;
535 }
536
537 /*
538 * This function handles the CONNECT_REQUEST event on a listening
539 * endpoint. It is passed the cma_id for the _new_ connection. The context in
540 * this cma_id is inherited from the listening cma_id and is the svc_xprt
541 * structure for the listening endpoint.
542 *
543 * This function creates a new xprt for the new connection and enqueues it on
544 * the accept queue for the listent xprt. When the listen thread is kicked, it
545 * will call the recvfrom method on the listen xprt which will accept the new
546 * connection.
547 */
548 static void handle_connect_req(struct rdma_cm_id *new_cma_id, size_t client_ird)
549 {
550 struct svcxprt_rdma *listen_xprt = new_cma_id->context;
551 struct svcxprt_rdma *newxprt;
552 struct sockaddr *sa;
553
554 /* Create a new transport */
555 newxprt = rdma_create_xprt(listen_xprt->sc_xprt.xpt_server, 0);
556 if (!newxprt) {
557 dprintk("svcrdma: failed to create new transport\n");
558 return;
559 }
560 newxprt->sc_cm_id = new_cma_id;
561 new_cma_id->context = newxprt;
562 dprintk("svcrdma: Creating newxprt=%p, cm_id=%p, listenxprt=%p\n",
563 newxprt, newxprt->sc_cm_id, listen_xprt);
564
565 /* Save client advertised inbound read limit for use later in accept. */
566 newxprt->sc_ord = client_ird;
567
568 /* Set the local and remote addresses in the transport */
569 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr;
570 svc_xprt_set_remote(&newxprt->sc_xprt, sa, svc_addr_len(sa));
571 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr;
572 svc_xprt_set_local(&newxprt->sc_xprt, sa, svc_addr_len(sa));
573
574 /*
575 * Enqueue the new transport on the accept queue of the listening
576 * transport
577 */
578 spin_lock_bh(&listen_xprt->sc_lock);
579 list_add_tail(&newxprt->sc_accept_q, &listen_xprt->sc_accept_q);
580 spin_unlock_bh(&listen_xprt->sc_lock);
581
582 set_bit(XPT_CONN, &listen_xprt->sc_xprt.xpt_flags);
583 svc_xprt_enqueue(&listen_xprt->sc_xprt);
584 }
585
586 /*
587 * Handles events generated on the listening endpoint. These events will be
588 * either be incoming connect requests or adapter removal events.
589 */
590 static int rdma_listen_handler(struct rdma_cm_id *cma_id,
591 struct rdma_cm_event *event)
592 {
593 struct svcxprt_rdma *xprt = cma_id->context;
594 int ret = 0;
595
596 switch (event->event) {
597 case RDMA_CM_EVENT_CONNECT_REQUEST:
598 dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, "
599 "event=%d\n", cma_id, cma_id->context, event->event);
600 handle_connect_req(cma_id,
601 event->param.conn.initiator_depth);
602 break;
603
604 case RDMA_CM_EVENT_ESTABLISHED:
605 /* Accept complete */
606 dprintk("svcrdma: Connection completed on LISTEN xprt=%p, "
607 "cm_id=%p\n", xprt, cma_id);
608 break;
609
610 case RDMA_CM_EVENT_DEVICE_REMOVAL:
611 dprintk("svcrdma: Device removal xprt=%p, cm_id=%p\n",
612 xprt, cma_id);
613 if (xprt)
614 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
615 break;
616
617 default:
618 dprintk("svcrdma: Unexpected event on listening endpoint %p, "
619 "event=%d\n", cma_id, event->event);
620 break;
621 }
622
623 return ret;
624 }
625
626 static int rdma_cma_handler(struct rdma_cm_id *cma_id,
627 struct rdma_cm_event *event)
628 {
629 struct svc_xprt *xprt = cma_id->context;
630 struct svcxprt_rdma *rdma =
631 container_of(xprt, struct svcxprt_rdma, sc_xprt);
632 switch (event->event) {
633 case RDMA_CM_EVENT_ESTABLISHED:
634 /* Accept complete */
635 svc_xprt_get(xprt);
636 dprintk("svcrdma: Connection completed on DTO xprt=%p, "
637 "cm_id=%p\n", xprt, cma_id);
638 clear_bit(RDMAXPRT_CONN_PENDING, &rdma->sc_flags);
639 svc_xprt_enqueue(xprt);
640 break;
641 case RDMA_CM_EVENT_DISCONNECTED:
642 dprintk("svcrdma: Disconnect on DTO xprt=%p, cm_id=%p\n",
643 xprt, cma_id);
644 if (xprt) {
645 set_bit(XPT_CLOSE, &xprt->xpt_flags);
646 svc_xprt_enqueue(xprt);
647 svc_xprt_put(xprt);
648 }
649 break;
650 case RDMA_CM_EVENT_DEVICE_REMOVAL:
651 dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, "
652 "event=%d\n", cma_id, xprt, event->event);
653 if (xprt) {
654 set_bit(XPT_CLOSE, &xprt->xpt_flags);
655 svc_xprt_enqueue(xprt);
656 }
657 break;
658 default:
659 dprintk("svcrdma: Unexpected event on DTO endpoint %p, "
660 "event=%d\n", cma_id, event->event);
661 break;
662 }
663 return 0;
664 }
665
666 /*
667 * Create a listening RDMA service endpoint.
668 */
669 static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
670 struct net *net,
671 struct sockaddr *sa, int salen,
672 int flags)
673 {
674 struct rdma_cm_id *listen_id;
675 struct svcxprt_rdma *cma_xprt;
676 int ret;
677
678 dprintk("svcrdma: Creating RDMA socket\n");
679 if (sa->sa_family != AF_INET) {
680 dprintk("svcrdma: Address family %d is not supported.\n", sa->sa_family);
681 return ERR_PTR(-EAFNOSUPPORT);
682 }
683 cma_xprt = rdma_create_xprt(serv, 1);
684 if (!cma_xprt)
685 return ERR_PTR(-ENOMEM);
686
687 listen_id = rdma_create_id(rdma_listen_handler, cma_xprt, RDMA_PS_TCP,
688 IB_QPT_RC);
689 if (IS_ERR(listen_id)) {
690 ret = PTR_ERR(listen_id);
691 dprintk("svcrdma: rdma_create_id failed = %d\n", ret);
692 goto err0;
693 }
694
695 ret = rdma_bind_addr(listen_id, sa);
696 if (ret) {
697 dprintk("svcrdma: rdma_bind_addr failed = %d\n", ret);
698 goto err1;
699 }
700 cma_xprt->sc_cm_id = listen_id;
701
702 ret = rdma_listen(listen_id, RPCRDMA_LISTEN_BACKLOG);
703 if (ret) {
704 dprintk("svcrdma: rdma_listen failed = %d\n", ret);
705 goto err1;
706 }
707
708 /*
709 * We need to use the address from the cm_id in case the
710 * caller specified 0 for the port number.
711 */
712 sa = (struct sockaddr *)&cma_xprt->sc_cm_id->route.addr.src_addr;
713 svc_xprt_set_local(&cma_xprt->sc_xprt, sa, salen);
714
715 return &cma_xprt->sc_xprt;
716
717 err1:
718 rdma_destroy_id(listen_id);
719 err0:
720 kfree(cma_xprt);
721 return ERR_PTR(ret);
722 }
723
724 static struct svc_rdma_fastreg_mr *rdma_alloc_frmr(struct svcxprt_rdma *xprt)
725 {
726 struct ib_mr *mr;
727 struct ib_fast_reg_page_list *pl;
728 struct svc_rdma_fastreg_mr *frmr;
729
730 frmr = kmalloc(sizeof(*frmr), GFP_KERNEL);
731 if (!frmr)
732 goto err;
733
734 mr = ib_alloc_fast_reg_mr(xprt->sc_pd, RPCSVC_MAXPAGES);
735 if (IS_ERR(mr))
736 goto err_free_frmr;
737
738 pl = ib_alloc_fast_reg_page_list(xprt->sc_cm_id->device,
739 RPCSVC_MAXPAGES);
740 if (IS_ERR(pl))
741 goto err_free_mr;
742
743 frmr->mr = mr;
744 frmr->page_list = pl;
745 INIT_LIST_HEAD(&frmr->frmr_list);
746 return frmr;
747
748 err_free_mr:
749 ib_dereg_mr(mr);
750 err_free_frmr:
751 kfree(frmr);
752 err:
753 return ERR_PTR(-ENOMEM);
754 }
755
756 static void rdma_dealloc_frmr_q(struct svcxprt_rdma *xprt)
757 {
758 struct svc_rdma_fastreg_mr *frmr;
759
760 while (!list_empty(&xprt->sc_frmr_q)) {
761 frmr = list_entry(xprt->sc_frmr_q.next,
762 struct svc_rdma_fastreg_mr, frmr_list);
763 list_del_init(&frmr->frmr_list);
764 ib_dereg_mr(frmr->mr);
765 ib_free_fast_reg_page_list(frmr->page_list);
766 kfree(frmr);
767 }
768 }
769
770 struct svc_rdma_fastreg_mr *svc_rdma_get_frmr(struct svcxprt_rdma *rdma)
771 {
772 struct svc_rdma_fastreg_mr *frmr = NULL;
773
774 spin_lock_bh(&rdma->sc_frmr_q_lock);
775 if (!list_empty(&rdma->sc_frmr_q)) {
776 frmr = list_entry(rdma->sc_frmr_q.next,
777 struct svc_rdma_fastreg_mr, frmr_list);
778 list_del_init(&frmr->frmr_list);
779 frmr->map_len = 0;
780 frmr->page_list_len = 0;
781 }
782 spin_unlock_bh(&rdma->sc_frmr_q_lock);
783 if (frmr)
784 return frmr;
785
786 return rdma_alloc_frmr(rdma);
787 }
788
789 static void frmr_unmap_dma(struct svcxprt_rdma *xprt,
790 struct svc_rdma_fastreg_mr *frmr)
791 {
792 int page_no;
793 for (page_no = 0; page_no < frmr->page_list_len; page_no++) {
794 dma_addr_t addr = frmr->page_list->page_list[page_no];
795 if (ib_dma_mapping_error(frmr->mr->device, addr))
796 continue;
797 atomic_dec(&xprt->sc_dma_used);
798 ib_dma_unmap_page(frmr->mr->device, addr, PAGE_SIZE,
799 frmr->direction);
800 }
801 }
802
803 void svc_rdma_put_frmr(struct svcxprt_rdma *rdma,
804 struct svc_rdma_fastreg_mr *frmr)
805 {
806 if (frmr) {
807 frmr_unmap_dma(rdma, frmr);
808 spin_lock_bh(&rdma->sc_frmr_q_lock);
809 WARN_ON_ONCE(!list_empty(&frmr->frmr_list));
810 list_add(&frmr->frmr_list, &rdma->sc_frmr_q);
811 spin_unlock_bh(&rdma->sc_frmr_q_lock);
812 }
813 }
814
815 /*
816 * This is the xpo_recvfrom function for listening endpoints. Its
817 * purpose is to accept incoming connections. The CMA callback handler
818 * has already created a new transport and attached it to the new CMA
819 * ID.
820 *
821 * There is a queue of pending connections hung on the listening
822 * transport. This queue contains the new svc_xprt structure. This
823 * function takes svc_xprt structures off the accept_q and completes
824 * the connection.
825 */
826 static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
827 {
828 struct svcxprt_rdma *listen_rdma;
829 struct svcxprt_rdma *newxprt = NULL;
830 struct rdma_conn_param conn_param;
831 struct ib_qp_init_attr qp_attr;
832 struct ib_device_attr devattr;
833 int uninitialized_var(dma_mr_acc);
834 int need_dma_mr;
835 int ret;
836 int i;
837
838 listen_rdma = container_of(xprt, struct svcxprt_rdma, sc_xprt);
839 clear_bit(XPT_CONN, &xprt->xpt_flags);
840 /* Get the next entry off the accept list */
841 spin_lock_bh(&listen_rdma->sc_lock);
842 if (!list_empty(&listen_rdma->sc_accept_q)) {
843 newxprt = list_entry(listen_rdma->sc_accept_q.next,
844 struct svcxprt_rdma, sc_accept_q);
845 list_del_init(&newxprt->sc_accept_q);
846 }
847 if (!list_empty(&listen_rdma->sc_accept_q))
848 set_bit(XPT_CONN, &listen_rdma->sc_xprt.xpt_flags);
849 spin_unlock_bh(&listen_rdma->sc_lock);
850 if (!newxprt)
851 return NULL;
852
853 dprintk("svcrdma: newxprt from accept queue = %p, cm_id=%p\n",
854 newxprt, newxprt->sc_cm_id);
855
856 ret = ib_query_device(newxprt->sc_cm_id->device, &devattr);
857 if (ret) {
858 dprintk("svcrdma: could not query device attributes on "
859 "device %p, rc=%d\n", newxprt->sc_cm_id->device, ret);
860 goto errout;
861 }
862
863 /* Qualify the transport resource defaults with the
864 * capabilities of this particular device */
865 newxprt->sc_max_sge = min((size_t)devattr.max_sge,
866 (size_t)RPCSVC_MAXPAGES);
867 newxprt->sc_max_requests = min((size_t)devattr.max_qp_wr,
868 (size_t)svcrdma_max_requests);
869 newxprt->sc_sq_depth = RPCRDMA_SQ_DEPTH_MULT * newxprt->sc_max_requests;
870
871 /*
872 * Limit ORD based on client limit, local device limit, and
873 * configured svcrdma limit.
874 */
875 newxprt->sc_ord = min_t(size_t, devattr.max_qp_rd_atom, newxprt->sc_ord);
876 newxprt->sc_ord = min_t(size_t, svcrdma_ord, newxprt->sc_ord);
877
878 newxprt->sc_pd = ib_alloc_pd(newxprt->sc_cm_id->device);
879 if (IS_ERR(newxprt->sc_pd)) {
880 dprintk("svcrdma: error creating PD for connect request\n");
881 goto errout;
882 }
883 newxprt->sc_sq_cq = ib_create_cq(newxprt->sc_cm_id->device,
884 sq_comp_handler,
885 cq_event_handler,
886 newxprt,
887 newxprt->sc_sq_depth,
888 0);
889 if (IS_ERR(newxprt->sc_sq_cq)) {
890 dprintk("svcrdma: error creating SQ CQ for connect request\n");
891 goto errout;
892 }
893 newxprt->sc_rq_cq = ib_create_cq(newxprt->sc_cm_id->device,
894 rq_comp_handler,
895 cq_event_handler,
896 newxprt,
897 newxprt->sc_max_requests,
898 0);
899 if (IS_ERR(newxprt->sc_rq_cq)) {
900 dprintk("svcrdma: error creating RQ CQ for connect request\n");
901 goto errout;
902 }
903
904 memset(&qp_attr, 0, sizeof qp_attr);
905 qp_attr.event_handler = qp_event_handler;
906 qp_attr.qp_context = &newxprt->sc_xprt;
907 qp_attr.cap.max_send_wr = newxprt->sc_sq_depth;
908 qp_attr.cap.max_recv_wr = newxprt->sc_max_requests;
909 qp_attr.cap.max_send_sge = newxprt->sc_max_sge;
910 qp_attr.cap.max_recv_sge = newxprt->sc_max_sge;
911 qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
912 qp_attr.qp_type = IB_QPT_RC;
913 qp_attr.send_cq = newxprt->sc_sq_cq;
914 qp_attr.recv_cq = newxprt->sc_rq_cq;
915 dprintk("svcrdma: newxprt->sc_cm_id=%p, newxprt->sc_pd=%p\n"
916 " cm_id->device=%p, sc_pd->device=%p\n"
917 " cap.max_send_wr = %d\n"
918 " cap.max_recv_wr = %d\n"
919 " cap.max_send_sge = %d\n"
920 " cap.max_recv_sge = %d\n",
921 newxprt->sc_cm_id, newxprt->sc_pd,
922 newxprt->sc_cm_id->device, newxprt->sc_pd->device,
923 qp_attr.cap.max_send_wr,
924 qp_attr.cap.max_recv_wr,
925 qp_attr.cap.max_send_sge,
926 qp_attr.cap.max_recv_sge);
927
928 ret = rdma_create_qp(newxprt->sc_cm_id, newxprt->sc_pd, &qp_attr);
929 if (ret) {
930 dprintk("svcrdma: failed to create QP, ret=%d\n", ret);
931 goto errout;
932 }
933 newxprt->sc_qp = newxprt->sc_cm_id->qp;
934
935 /*
936 * Use the most secure set of MR resources based on the
937 * transport type and available memory management features in
938 * the device. Here's the table implemented below:
939 *
940 * Fast Global DMA Remote WR
941 * Reg LKEY MR Access
942 * Sup'd Sup'd Needed Needed
943 *
944 * IWARP N N Y Y
945 * N Y Y Y
946 * Y N Y N
947 * Y Y N -
948 *
949 * IB N N Y N
950 * N Y N -
951 * Y N Y N
952 * Y Y N -
953 *
954 * NB: iWARP requires remote write access for the data sink
955 * of an RDMA_READ. IB does not.
956 */
957 newxprt->sc_reader = rdma_read_chunk_lcl;
958 if (devattr.device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) {
959 newxprt->sc_frmr_pg_list_len =
960 devattr.max_fast_reg_page_list_len;
961 newxprt->sc_dev_caps |= SVCRDMA_DEVCAP_FAST_REG;
962 newxprt->sc_reader = rdma_read_chunk_frmr;
963 }
964
965 /*
966 * Determine if a DMA MR is required and if so, what privs are required
967 */
968 switch (rdma_node_get_transport(newxprt->sc_cm_id->device->node_type)) {
969 case RDMA_TRANSPORT_IWARP:
970 newxprt->sc_dev_caps |= SVCRDMA_DEVCAP_READ_W_INV;
971 if (!(newxprt->sc_dev_caps & SVCRDMA_DEVCAP_FAST_REG)) {
972 need_dma_mr = 1;
973 dma_mr_acc =
974 (IB_ACCESS_LOCAL_WRITE |
975 IB_ACCESS_REMOTE_WRITE);
976 } else if (!(devattr.device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY)) {
977 need_dma_mr = 1;
978 dma_mr_acc = IB_ACCESS_LOCAL_WRITE;
979 } else
980 need_dma_mr = 0;
981 break;
982 case RDMA_TRANSPORT_IB:
983 if (!(newxprt->sc_dev_caps & SVCRDMA_DEVCAP_FAST_REG)) {
984 need_dma_mr = 1;
985 dma_mr_acc = IB_ACCESS_LOCAL_WRITE;
986 } else if (!(devattr.device_cap_flags &
987 IB_DEVICE_LOCAL_DMA_LKEY)) {
988 need_dma_mr = 1;
989 dma_mr_acc = IB_ACCESS_LOCAL_WRITE;
990 } else
991 need_dma_mr = 0;
992 break;
993 default:
994 goto errout;
995 }
996
997 /* Create the DMA MR if needed, otherwise, use the DMA LKEY */
998 if (need_dma_mr) {
999 /* Register all of physical memory */
1000 newxprt->sc_phys_mr =
1001 ib_get_dma_mr(newxprt->sc_pd, dma_mr_acc);
1002 if (IS_ERR(newxprt->sc_phys_mr)) {
1003 dprintk("svcrdma: Failed to create DMA MR ret=%d\n",
1004 ret);
1005 goto errout;
1006 }
1007 newxprt->sc_dma_lkey = newxprt->sc_phys_mr->lkey;
1008 } else
1009 newxprt->sc_dma_lkey =
1010 newxprt->sc_cm_id->device->local_dma_lkey;
1011
1012 /* Post receive buffers */
1013 for (i = 0; i < newxprt->sc_max_requests; i++) {
1014 ret = svc_rdma_post_recv(newxprt);
1015 if (ret) {
1016 dprintk("svcrdma: failure posting receive buffers\n");
1017 goto errout;
1018 }
1019 }
1020
1021 /* Swap out the handler */
1022 newxprt->sc_cm_id->event_handler = rdma_cma_handler;
1023
1024 /*
1025 * Arm the CQs for the SQ and RQ before accepting so we can't
1026 * miss the first message
1027 */
1028 ib_req_notify_cq(newxprt->sc_sq_cq, IB_CQ_NEXT_COMP);
1029 ib_req_notify_cq(newxprt->sc_rq_cq, IB_CQ_NEXT_COMP);
1030
1031 /* Accept Connection */
1032 set_bit(RDMAXPRT_CONN_PENDING, &newxprt->sc_flags);
1033 memset(&conn_param, 0, sizeof conn_param);
1034 conn_param.responder_resources = 0;
1035 conn_param.initiator_depth = newxprt->sc_ord;
1036 ret = rdma_accept(newxprt->sc_cm_id, &conn_param);
1037 if (ret) {
1038 dprintk("svcrdma: failed to accept new connection, ret=%d\n",
1039 ret);
1040 goto errout;
1041 }
1042
1043 dprintk("svcrdma: new connection %p accepted with the following "
1044 "attributes:\n"
1045 " local_ip : %pI4\n"
1046 " local_port : %d\n"
1047 " remote_ip : %pI4\n"
1048 " remote_port : %d\n"
1049 " max_sge : %d\n"
1050 " sq_depth : %d\n"
1051 " max_requests : %d\n"
1052 " ord : %d\n",
1053 newxprt,
1054 &((struct sockaddr_in *)&newxprt->sc_cm_id->
1055 route.addr.src_addr)->sin_addr.s_addr,
1056 ntohs(((struct sockaddr_in *)&newxprt->sc_cm_id->
1057 route.addr.src_addr)->sin_port),
1058 &((struct sockaddr_in *)&newxprt->sc_cm_id->
1059 route.addr.dst_addr)->sin_addr.s_addr,
1060 ntohs(((struct sockaddr_in *)&newxprt->sc_cm_id->
1061 route.addr.dst_addr)->sin_port),
1062 newxprt->sc_max_sge,
1063 newxprt->sc_sq_depth,
1064 newxprt->sc_max_requests,
1065 newxprt->sc_ord);
1066
1067 return &newxprt->sc_xprt;
1068
1069 errout:
1070 dprintk("svcrdma: failure accepting new connection rc=%d.\n", ret);
1071 /* Take a reference in case the DTO handler runs */
1072 svc_xprt_get(&newxprt->sc_xprt);
1073 if (newxprt->sc_qp && !IS_ERR(newxprt->sc_qp))
1074 ib_destroy_qp(newxprt->sc_qp);
1075 rdma_destroy_id(newxprt->sc_cm_id);
1076 /* This call to put will destroy the transport */
1077 svc_xprt_put(&newxprt->sc_xprt);
1078 return NULL;
1079 }
1080
1081 static void svc_rdma_release_rqst(struct svc_rqst *rqstp)
1082 {
1083 }
1084
1085 /*
1086 * When connected, an svc_xprt has at least two references:
1087 *
1088 * - A reference held by the cm_id between the ESTABLISHED and
1089 * DISCONNECTED events. If the remote peer disconnected first, this
1090 * reference could be gone.
1091 *
1092 * - A reference held by the svc_recv code that called this function
1093 * as part of close processing.
1094 *
1095 * At a minimum one references should still be held.
1096 */
1097 static void svc_rdma_detach(struct svc_xprt *xprt)
1098 {
1099 struct svcxprt_rdma *rdma =
1100 container_of(xprt, struct svcxprt_rdma, sc_xprt);
1101 dprintk("svc: svc_rdma_detach(%p)\n", xprt);
1102
1103 /* Disconnect and flush posted WQE */
1104 rdma_disconnect(rdma->sc_cm_id);
1105 }
1106
1107 static void __svc_rdma_free(struct work_struct *work)
1108 {
1109 struct svcxprt_rdma *rdma =
1110 container_of(work, struct svcxprt_rdma, sc_work);
1111 dprintk("svcrdma: svc_rdma_free(%p)\n", rdma);
1112
1113 /* We should only be called from kref_put */
1114 if (atomic_read(&rdma->sc_xprt.xpt_ref.refcount) != 0)
1115 pr_err("svcrdma: sc_xprt still in use? (%d)\n",
1116 atomic_read(&rdma->sc_xprt.xpt_ref.refcount));
1117
1118 /*
1119 * Destroy queued, but not processed read completions. Note
1120 * that this cleanup has to be done before destroying the
1121 * cm_id because the device ptr is needed to unmap the dma in
1122 * svc_rdma_put_context.
1123 */
1124 while (!list_empty(&rdma->sc_read_complete_q)) {
1125 struct svc_rdma_op_ctxt *ctxt;
1126 ctxt = list_entry(rdma->sc_read_complete_q.next,
1127 struct svc_rdma_op_ctxt,
1128 dto_q);
1129 list_del_init(&ctxt->dto_q);
1130 svc_rdma_put_context(ctxt, 1);
1131 }
1132
1133 /* Destroy queued, but not processed recv completions */
1134 while (!list_empty(&rdma->sc_rq_dto_q)) {
1135 struct svc_rdma_op_ctxt *ctxt;
1136 ctxt = list_entry(rdma->sc_rq_dto_q.next,
1137 struct svc_rdma_op_ctxt,
1138 dto_q);
1139 list_del_init(&ctxt->dto_q);
1140 svc_rdma_put_context(ctxt, 1);
1141 }
1142
1143 /* Warn if we leaked a resource or under-referenced */
1144 if (atomic_read(&rdma->sc_ctxt_used) != 0)
1145 pr_err("svcrdma: ctxt still in use? (%d)\n",
1146 atomic_read(&rdma->sc_ctxt_used));
1147 if (atomic_read(&rdma->sc_dma_used) != 0)
1148 pr_err("svcrdma: dma still in use? (%d)\n",
1149 atomic_read(&rdma->sc_dma_used));
1150
1151 /* De-allocate fastreg mr */
1152 rdma_dealloc_frmr_q(rdma);
1153
1154 /* Destroy the QP if present (not a listener) */
1155 if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
1156 ib_destroy_qp(rdma->sc_qp);
1157
1158 if (rdma->sc_sq_cq && !IS_ERR(rdma->sc_sq_cq))
1159 ib_destroy_cq(rdma->sc_sq_cq);
1160
1161 if (rdma->sc_rq_cq && !IS_ERR(rdma->sc_rq_cq))
1162 ib_destroy_cq(rdma->sc_rq_cq);
1163
1164 if (rdma->sc_phys_mr && !IS_ERR(rdma->sc_phys_mr))
1165 ib_dereg_mr(rdma->sc_phys_mr);
1166
1167 if (rdma->sc_pd && !IS_ERR(rdma->sc_pd))
1168 ib_dealloc_pd(rdma->sc_pd);
1169
1170 /* Destroy the CM ID */
1171 rdma_destroy_id(rdma->sc_cm_id);
1172
1173 kfree(rdma);
1174 }
1175
1176 static void svc_rdma_free(struct svc_xprt *xprt)
1177 {
1178 struct svcxprt_rdma *rdma =
1179 container_of(xprt, struct svcxprt_rdma, sc_xprt);
1180 INIT_WORK(&rdma->sc_work, __svc_rdma_free);
1181 queue_work(svc_rdma_wq, &rdma->sc_work);
1182 }
1183
1184 static int svc_rdma_has_wspace(struct svc_xprt *xprt)
1185 {
1186 struct svcxprt_rdma *rdma =
1187 container_of(xprt, struct svcxprt_rdma, sc_xprt);
1188
1189 /*
1190 * If there are already waiters on the SQ,
1191 * return false.
1192 */
1193 if (waitqueue_active(&rdma->sc_send_wait))
1194 return 0;
1195
1196 /* Otherwise return true. */
1197 return 1;
1198 }
1199
1200 static int svc_rdma_secure_port(struct svc_rqst *rqstp)
1201 {
1202 return 1;
1203 }
1204
1205 /*
1206 * Attempt to register the kvec representing the RPC memory with the
1207 * device.
1208 *
1209 * Returns:
1210 * NULL : The device does not support fastreg or there were no more
1211 * fastreg mr.
1212 * frmr : The kvec register request was successfully posted.
1213 * <0 : An error was encountered attempting to register the kvec.
1214 */
1215 int svc_rdma_fastreg(struct svcxprt_rdma *xprt,
1216 struct svc_rdma_fastreg_mr *frmr)
1217 {
1218 struct ib_send_wr fastreg_wr;
1219 u8 key;
1220
1221 /* Bump the key */
1222 key = (u8)(frmr->mr->lkey & 0x000000FF);
1223 ib_update_fast_reg_key(frmr->mr, ++key);
1224
1225 /* Prepare FASTREG WR */
1226 memset(&fastreg_wr, 0, sizeof fastreg_wr);
1227 fastreg_wr.opcode = IB_WR_FAST_REG_MR;
1228 fastreg_wr.send_flags = IB_SEND_SIGNALED;
1229 fastreg_wr.wr.fast_reg.iova_start = (unsigned long)frmr->kva;
1230 fastreg_wr.wr.fast_reg.page_list = frmr->page_list;
1231 fastreg_wr.wr.fast_reg.page_list_len = frmr->page_list_len;
1232 fastreg_wr.wr.fast_reg.page_shift = PAGE_SHIFT;
1233 fastreg_wr.wr.fast_reg.length = frmr->map_len;
1234 fastreg_wr.wr.fast_reg.access_flags = frmr->access_flags;
1235 fastreg_wr.wr.fast_reg.rkey = frmr->mr->lkey;
1236 return svc_rdma_send(xprt, &fastreg_wr);
1237 }
1238
1239 int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
1240 {
1241 struct ib_send_wr *bad_wr, *n_wr;
1242 int wr_count;
1243 int i;
1244 int ret;
1245
1246 if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
1247 return -ENOTCONN;
1248
1249 wr_count = 1;
1250 for (n_wr = wr->next; n_wr; n_wr = n_wr->next)
1251 wr_count++;
1252
1253 /* If the SQ is full, wait until an SQ entry is available */
1254 while (1) {
1255 spin_lock_bh(&xprt->sc_lock);
1256 if (xprt->sc_sq_depth < atomic_read(&xprt->sc_sq_count) + wr_count) {
1257 spin_unlock_bh(&xprt->sc_lock);
1258 atomic_inc(&rdma_stat_sq_starve);
1259
1260 /* See if we can opportunistically reap SQ WR to make room */
1261 sq_cq_reap(xprt);
1262
1263 /* Wait until SQ WR available if SQ still full */
1264 wait_event(xprt->sc_send_wait,
1265 atomic_read(&xprt->sc_sq_count) <
1266 xprt->sc_sq_depth);
1267 if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
1268 return -ENOTCONN;
1269 continue;
1270 }
1271 /* Take a transport ref for each WR posted */
1272 for (i = 0; i < wr_count; i++)
1273 svc_xprt_get(&xprt->sc_xprt);
1274
1275 /* Bump used SQ WR count and post */
1276 atomic_add(wr_count, &xprt->sc_sq_count);
1277 ret = ib_post_send(xprt->sc_qp, wr, &bad_wr);
1278 if (ret) {
1279 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
1280 atomic_sub(wr_count, &xprt->sc_sq_count);
1281 for (i = 0; i < wr_count; i ++)
1282 svc_xprt_put(&xprt->sc_xprt);
1283 dprintk("svcrdma: failed to post SQ WR rc=%d, "
1284 "sc_sq_count=%d, sc_sq_depth=%d\n",
1285 ret, atomic_read(&xprt->sc_sq_count),
1286 xprt->sc_sq_depth);
1287 }
1288 spin_unlock_bh(&xprt->sc_lock);
1289 if (ret)
1290 wake_up(&xprt->sc_send_wait);
1291 break;
1292 }
1293 return ret;
1294 }
1295
1296 void svc_rdma_send_error(struct svcxprt_rdma *xprt, struct rpcrdma_msg *rmsgp,
1297 enum rpcrdma_errcode err)
1298 {
1299 struct ib_send_wr err_wr;
1300 struct page *p;
1301 struct svc_rdma_op_ctxt *ctxt;
1302 __be32 *va;
1303 int length;
1304 int ret;
1305
1306 p = alloc_page(GFP_KERNEL | __GFP_NOFAIL);
1307 va = page_address(p);
1308
1309 /* XDR encode error */
1310 length = svc_rdma_xdr_encode_error(xprt, rmsgp, err, va);
1311
1312 ctxt = svc_rdma_get_context(xprt);
1313 ctxt->direction = DMA_FROM_DEVICE;
1314 ctxt->count = 1;
1315 ctxt->pages[0] = p;
1316
1317 /* Prepare SGE for local address */
1318 ctxt->sge[0].addr = ib_dma_map_page(xprt->sc_cm_id->device,
1319 p, 0, length, DMA_FROM_DEVICE);
1320 if (ib_dma_mapping_error(xprt->sc_cm_id->device, ctxt->sge[0].addr)) {
1321 put_page(p);
1322 svc_rdma_put_context(ctxt, 1);
1323 return;
1324 }
1325 atomic_inc(&xprt->sc_dma_used);
1326 ctxt->sge[0].lkey = xprt->sc_dma_lkey;
1327 ctxt->sge[0].length = length;
1328
1329 /* Prepare SEND WR */
1330 memset(&err_wr, 0, sizeof err_wr);
1331 ctxt->wr_op = IB_WR_SEND;
1332 err_wr.wr_id = (unsigned long)ctxt;
1333 err_wr.sg_list = ctxt->sge;
1334 err_wr.num_sge = 1;
1335 err_wr.opcode = IB_WR_SEND;
1336 err_wr.send_flags = IB_SEND_SIGNALED;
1337
1338 /* Post It */
1339 ret = svc_rdma_send(xprt, &err_wr);
1340 if (ret) {
1341 dprintk("svcrdma: Error %d posting send for protocol error\n",
1342 ret);
1343 svc_rdma_unmap_dma(ctxt);
1344 svc_rdma_put_context(ctxt, 1);
1345 }
1346 }
This page took 0.089613 seconds and 5 git commands to generate.