blob: 4bf8b5ad1675a34ab7e0d482071b397be7844966 [file] [log] [blame]
Tom Tucker377f9b22007-12-12 16:13:21 -06001/*
2 * Copyright (c) 2005-2007 Network Appliance, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the BSD-type
8 * license below:
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 *
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 *
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
21 *
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
25 * permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 *
39 * Author: Tom Tucker <tom@opengridcomputing.com>
40 */
41
42#include <linux/sunrpc/svc_xprt.h>
43#include <linux/sunrpc/debug.h>
44#include <linux/sunrpc/rpc_rdma.h>
45#include <linux/spinlock.h>
46#include <rdma/ib_verbs.h>
47#include <rdma/rdma_cm.h>
48#include <linux/sunrpc/svc_rdma.h>
49
50#define RPCDBG_FACILITY RPCDBG_SVCXPRT
51
52static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
53 struct sockaddr *sa, int salen,
54 int flags);
55static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt);
56static void svc_rdma_release_rqst(struct svc_rqst *);
Tom Tucker377f9b22007-12-12 16:13:21 -060057static void dto_tasklet_func(unsigned long data);
58static void svc_rdma_detach(struct svc_xprt *xprt);
59static void svc_rdma_free(struct svc_xprt *xprt);
60static int svc_rdma_has_wspace(struct svc_xprt *xprt);
61static void rq_cq_reap(struct svcxprt_rdma *xprt);
62static void sq_cq_reap(struct svcxprt_rdma *xprt);
63
64DECLARE_TASKLET(dto_tasklet, dto_tasklet_func, 0UL);
65static DEFINE_SPINLOCK(dto_lock);
66static LIST_HEAD(dto_xprt_q);
67
68static struct svc_xprt_ops svc_rdma_ops = {
69 .xpo_create = svc_rdma_create,
70 .xpo_recvfrom = svc_rdma_recvfrom,
71 .xpo_sendto = svc_rdma_sendto,
72 .xpo_release_rqst = svc_rdma_release_rqst,
73 .xpo_detach = svc_rdma_detach,
74 .xpo_free = svc_rdma_free,
75 .xpo_prep_reply_hdr = svc_rdma_prep_reply_hdr,
76 .xpo_has_wspace = svc_rdma_has_wspace,
77 .xpo_accept = svc_rdma_accept,
78};
79
80struct svc_xprt_class svc_rdma_class = {
81 .xcl_name = "rdma",
82 .xcl_owner = THIS_MODULE,
83 .xcl_ops = &svc_rdma_ops,
84 .xcl_max_payload = RPCSVC_MAXPAYLOAD_TCP,
85};
86
87static int rdma_bump_context_cache(struct svcxprt_rdma *xprt)
88{
89 int target;
90 int at_least_one = 0;
91 struct svc_rdma_op_ctxt *ctxt;
92
93 target = min(xprt->sc_ctxt_cnt + xprt->sc_ctxt_bump,
94 xprt->sc_ctxt_max);
95
96 spin_lock_bh(&xprt->sc_ctxt_lock);
97 while (xprt->sc_ctxt_cnt < target) {
98 xprt->sc_ctxt_cnt++;
99 spin_unlock_bh(&xprt->sc_ctxt_lock);
100
101 ctxt = kmalloc(sizeof(*ctxt), GFP_KERNEL);
102
103 spin_lock_bh(&xprt->sc_ctxt_lock);
104 if (ctxt) {
105 at_least_one = 1;
106 ctxt->next = xprt->sc_ctxt_head;
107 xprt->sc_ctxt_head = ctxt;
108 } else {
109 /* kmalloc failed...give up for now */
110 xprt->sc_ctxt_cnt--;
111 break;
112 }
113 }
114 spin_unlock_bh(&xprt->sc_ctxt_lock);
115 dprintk("svcrdma: sc_ctxt_max=%d, sc_ctxt_cnt=%d\n",
116 xprt->sc_ctxt_max, xprt->sc_ctxt_cnt);
117 return at_least_one;
118}
119
120struct svc_rdma_op_ctxt *svc_rdma_get_context(struct svcxprt_rdma *xprt)
121{
122 struct svc_rdma_op_ctxt *ctxt;
123
124 while (1) {
125 spin_lock_bh(&xprt->sc_ctxt_lock);
126 if (unlikely(xprt->sc_ctxt_head == NULL)) {
127 /* Try to bump my cache. */
128 spin_unlock_bh(&xprt->sc_ctxt_lock);
129
130 if (rdma_bump_context_cache(xprt))
131 continue;
132
133 printk(KERN_INFO "svcrdma: sleeping waiting for "
134 "context memory on xprt=%p\n",
135 xprt);
136 schedule_timeout_uninterruptible(msecs_to_jiffies(500));
137 continue;
138 }
139 ctxt = xprt->sc_ctxt_head;
140 xprt->sc_ctxt_head = ctxt->next;
141 spin_unlock_bh(&xprt->sc_ctxt_lock);
142 ctxt->xprt = xprt;
143 INIT_LIST_HEAD(&ctxt->dto_q);
144 ctxt->count = 0;
145 break;
146 }
147 return ctxt;
148}
149
150void svc_rdma_put_context(struct svc_rdma_op_ctxt *ctxt, int free_pages)
151{
152 struct svcxprt_rdma *xprt;
153 int i;
154
155 BUG_ON(!ctxt);
156 xprt = ctxt->xprt;
157 if (free_pages)
158 for (i = 0; i < ctxt->count; i++)
159 put_page(ctxt->pages[i]);
160
161 for (i = 0; i < ctxt->count; i++)
162 dma_unmap_single(xprt->sc_cm_id->device->dma_device,
163 ctxt->sge[i].addr,
164 ctxt->sge[i].length,
165 ctxt->direction);
166 spin_lock_bh(&xprt->sc_ctxt_lock);
167 ctxt->next = xprt->sc_ctxt_head;
168 xprt->sc_ctxt_head = ctxt;
169 spin_unlock_bh(&xprt->sc_ctxt_lock);
170}
171
172/* ib_cq event handler */
173static void cq_event_handler(struct ib_event *event, void *context)
174{
175 struct svc_xprt *xprt = context;
176 dprintk("svcrdma: received CQ event id=%d, context=%p\n",
177 event->event, context);
178 set_bit(XPT_CLOSE, &xprt->xpt_flags);
179}
180
181/* QP event handler */
182static void qp_event_handler(struct ib_event *event, void *context)
183{
184 struct svc_xprt *xprt = context;
185
186 switch (event->event) {
187 /* These are considered benign events */
188 case IB_EVENT_PATH_MIG:
189 case IB_EVENT_COMM_EST:
190 case IB_EVENT_SQ_DRAINED:
191 case IB_EVENT_QP_LAST_WQE_REACHED:
192 dprintk("svcrdma: QP event %d received for QP=%p\n",
193 event->event, event->element.qp);
194 break;
195 /* These are considered fatal events */
196 case IB_EVENT_PATH_MIG_ERR:
197 case IB_EVENT_QP_FATAL:
198 case IB_EVENT_QP_REQ_ERR:
199 case IB_EVENT_QP_ACCESS_ERR:
200 case IB_EVENT_DEVICE_FATAL:
201 default:
202 dprintk("svcrdma: QP ERROR event %d received for QP=%p, "
203 "closing transport\n",
204 event->event, event->element.qp);
205 set_bit(XPT_CLOSE, &xprt->xpt_flags);
206 break;
207 }
208}
209
210/*
211 * Data Transfer Operation Tasklet
212 *
213 * Walks a list of transports with I/O pending, removing entries as
214 * they are added to the server's I/O pending list. Two bits indicate
215 * if SQ, RQ, or both have I/O pending. The dto_lock is an irqsave
216 * spinlock that serializes access to the transport list with the RQ
217 * and SQ interrupt handlers.
218 */
219static void dto_tasklet_func(unsigned long data)
220{
221 struct svcxprt_rdma *xprt;
222 unsigned long flags;
223
224 spin_lock_irqsave(&dto_lock, flags);
225 while (!list_empty(&dto_xprt_q)) {
226 xprt = list_entry(dto_xprt_q.next,
227 struct svcxprt_rdma, sc_dto_q);
228 list_del_init(&xprt->sc_dto_q);
229 spin_unlock_irqrestore(&dto_lock, flags);
230
Tom Tuckerdbcd00e2008-05-06 11:33:11 -0500231 rq_cq_reap(xprt);
232 sq_cq_reap(xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600233
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400234 svc_xprt_put(&xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600235 spin_lock_irqsave(&dto_lock, flags);
236 }
237 spin_unlock_irqrestore(&dto_lock, flags);
238}
239
240/*
241 * Receive Queue Completion Handler
242 *
243 * Since an RQ completion handler is called on interrupt context, we
244 * need to defer the handling of the I/O to a tasklet
245 */
246static void rq_comp_handler(struct ib_cq *cq, void *cq_context)
247{
248 struct svcxprt_rdma *xprt = cq_context;
249 unsigned long flags;
250
251 /*
252 * Set the bit regardless of whether or not it's on the list
253 * because it may be on the list already due to an SQ
254 * completion.
255 */
256 set_bit(RDMAXPRT_RQ_PENDING, &xprt->sc_flags);
257
258 /*
259 * If this transport is not already on the DTO transport queue,
260 * add it
261 */
262 spin_lock_irqsave(&dto_lock, flags);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400263 if (list_empty(&xprt->sc_dto_q)) {
264 svc_xprt_get(&xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600265 list_add_tail(&xprt->sc_dto_q, &dto_xprt_q);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400266 }
Tom Tucker377f9b22007-12-12 16:13:21 -0600267 spin_unlock_irqrestore(&dto_lock, flags);
268
269 /* Tasklet does all the work to avoid irqsave locks. */
270 tasklet_schedule(&dto_tasklet);
271}
272
273/*
274 * rq_cq_reap - Process the RQ CQ.
275 *
276 * Take all completing WC off the CQE and enqueue the associated DTO
277 * context on the dto_q for the transport.
278 */
279static 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
Tom Tuckerdbcd00e2008-05-06 11:33:11 -0500285 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);
Tom Tucker377f9b22007-12-12 16:13:21 -0600289 atomic_inc(&rdma_stat_rq_poll);
290
291 spin_lock_bh(&xprt->sc_rq_dto_lock);
292 while ((ret = ib_poll_cq(xprt->sc_rq_cq, 1, &wc)) > 0) {
293 ctxt = (struct svc_rdma_op_ctxt *)(unsigned long)wc.wr_id;
294 ctxt->wc_status = wc.status;
295 ctxt->byte_len = wc.byte_len;
296 if (wc.status != IB_WC_SUCCESS) {
297 /* Close the transport */
298 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
299 svc_rdma_put_context(ctxt, 1);
300 continue;
301 }
302 list_add_tail(&ctxt->dto_q, &xprt->sc_rq_dto_q);
303 }
304 spin_unlock_bh(&xprt->sc_rq_dto_lock);
305
306 if (ctxt)
307 atomic_inc(&rdma_stat_rq_prod);
Tom Tuckerdbcd00e2008-05-06 11:33:11 -0500308
309 set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
310 /*
311 * If data arrived before established event,
312 * don't enqueue. This defers RPC I/O until the
313 * RDMA connection is complete.
314 */
315 if (!test_bit(RDMAXPRT_CONN_PENDING, &xprt->sc_flags))
316 svc_xprt_enqueue(&xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600317}
318
319/*
320 * Send Queue Completion Handler - potentially called on interrupt context.
321 */
322static void sq_cq_reap(struct svcxprt_rdma *xprt)
323{
324 struct svc_rdma_op_ctxt *ctxt = NULL;
325 struct ib_wc wc;
326 struct ib_cq *cq = xprt->sc_sq_cq;
327 int ret;
328
Tom Tuckerdbcd00e2008-05-06 11:33:11 -0500329
330 if (!test_and_clear_bit(RDMAXPRT_SQ_PENDING, &xprt->sc_flags))
331 return;
332
333 ib_req_notify_cq(xprt->sc_sq_cq, IB_CQ_NEXT_COMP);
Tom Tucker377f9b22007-12-12 16:13:21 -0600334 atomic_inc(&rdma_stat_sq_poll);
335 while ((ret = ib_poll_cq(cq, 1, &wc)) > 0) {
336 ctxt = (struct svc_rdma_op_ctxt *)(unsigned long)wc.wr_id;
337 xprt = ctxt->xprt;
338
339 if (wc.status != IB_WC_SUCCESS)
340 /* Close the transport */
341 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
342
343 /* Decrement used SQ WR count */
344 atomic_dec(&xprt->sc_sq_count);
345 wake_up(&xprt->sc_send_wait);
346
347 switch (ctxt->wr_op) {
348 case IB_WR_SEND:
349 case IB_WR_RDMA_WRITE:
350 svc_rdma_put_context(ctxt, 1);
351 break;
352
353 case IB_WR_RDMA_READ:
354 if (test_bit(RDMACTXT_F_LAST_CTXT, &ctxt->flags)) {
355 set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
356 set_bit(RDMACTXT_F_READ_DONE, &ctxt->flags);
357 spin_lock_bh(&xprt->sc_read_complete_lock);
358 list_add_tail(&ctxt->dto_q,
359 &xprt->sc_read_complete_q);
360 spin_unlock_bh(&xprt->sc_read_complete_lock);
361 svc_xprt_enqueue(&xprt->sc_xprt);
362 }
363 break;
364
365 default:
366 printk(KERN_ERR "svcrdma: unexpected completion type, "
367 "opcode=%d, status=%d\n",
368 wc.opcode, wc.status);
369 break;
370 }
371 }
372
373 if (ctxt)
374 atomic_inc(&rdma_stat_sq_prod);
375}
376
377static void sq_comp_handler(struct ib_cq *cq, void *cq_context)
378{
379 struct svcxprt_rdma *xprt = cq_context;
380 unsigned long flags;
381
382 /*
383 * Set the bit regardless of whether or not it's on the list
384 * because it may be on the list already due to an RQ
385 * completion.
386 */
387 set_bit(RDMAXPRT_SQ_PENDING, &xprt->sc_flags);
388
389 /*
390 * If this transport is not already on the DTO transport queue,
391 * add it
392 */
393 spin_lock_irqsave(&dto_lock, flags);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400394 if (list_empty(&xprt->sc_dto_q)) {
395 svc_xprt_get(&xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600396 list_add_tail(&xprt->sc_dto_q, &dto_xprt_q);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400397 }
Tom Tucker377f9b22007-12-12 16:13:21 -0600398 spin_unlock_irqrestore(&dto_lock, flags);
399
400 /* Tasklet does all the work to avoid irqsave locks. */
401 tasklet_schedule(&dto_tasklet);
402}
403
404static void create_context_cache(struct svcxprt_rdma *xprt,
405 int ctxt_count, int ctxt_bump, int ctxt_max)
406{
407 struct svc_rdma_op_ctxt *ctxt;
408 int i;
409
410 xprt->sc_ctxt_max = ctxt_max;
411 xprt->sc_ctxt_bump = ctxt_bump;
412 xprt->sc_ctxt_cnt = 0;
413 xprt->sc_ctxt_head = NULL;
414 for (i = 0; i < ctxt_count; i++) {
415 ctxt = kmalloc(sizeof(*ctxt), GFP_KERNEL);
416 if (ctxt) {
417 ctxt->next = xprt->sc_ctxt_head;
418 xprt->sc_ctxt_head = ctxt;
419 xprt->sc_ctxt_cnt++;
420 }
421 }
422}
423
424static void destroy_context_cache(struct svc_rdma_op_ctxt *ctxt)
425{
426 struct svc_rdma_op_ctxt *next;
427 if (!ctxt)
428 return;
429
430 do {
431 next = ctxt->next;
432 kfree(ctxt);
433 ctxt = next;
434 } while (next);
435}
436
437static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *serv,
438 int listener)
439{
440 struct svcxprt_rdma *cma_xprt = kzalloc(sizeof *cma_xprt, GFP_KERNEL);
441
442 if (!cma_xprt)
443 return NULL;
444 svc_xprt_init(&svc_rdma_class, &cma_xprt->sc_xprt, serv);
445 INIT_LIST_HEAD(&cma_xprt->sc_accept_q);
446 INIT_LIST_HEAD(&cma_xprt->sc_dto_q);
447 INIT_LIST_HEAD(&cma_xprt->sc_rq_dto_q);
448 INIT_LIST_HEAD(&cma_xprt->sc_read_complete_q);
449 init_waitqueue_head(&cma_xprt->sc_send_wait);
450
451 spin_lock_init(&cma_xprt->sc_lock);
452 spin_lock_init(&cma_xprt->sc_read_complete_lock);
453 spin_lock_init(&cma_xprt->sc_ctxt_lock);
454 spin_lock_init(&cma_xprt->sc_rq_dto_lock);
455
456 cma_xprt->sc_ord = svcrdma_ord;
457
458 cma_xprt->sc_max_req_size = svcrdma_max_req_size;
459 cma_xprt->sc_max_requests = svcrdma_max_requests;
460 cma_xprt->sc_sq_depth = svcrdma_max_requests * RPCRDMA_SQ_DEPTH_MULT;
461 atomic_set(&cma_xprt->sc_sq_count, 0);
462
463 if (!listener) {
464 int reqs = cma_xprt->sc_max_requests;
465 create_context_cache(cma_xprt,
466 reqs << 1, /* starting size */
467 reqs, /* bump amount */
468 reqs +
469 cma_xprt->sc_sq_depth +
470 RPCRDMA_MAX_THREADS + 1); /* max */
471 if (!cma_xprt->sc_ctxt_head) {
472 kfree(cma_xprt);
473 return NULL;
474 }
475 clear_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);
476 } else
477 set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);
478
479 return cma_xprt;
480}
481
482struct page *svc_rdma_get_page(void)
483{
484 struct page *page;
485
486 while ((page = alloc_page(GFP_KERNEL)) == NULL) {
487 /* If we can't get memory, wait a bit and try again */
488 printk(KERN_INFO "svcrdma: out of memory...retrying in 1000 "
489 "jiffies.\n");
490 schedule_timeout_uninterruptible(msecs_to_jiffies(1000));
491 }
492 return page;
493}
494
495int svc_rdma_post_recv(struct svcxprt_rdma *xprt)
496{
497 struct ib_recv_wr recv_wr, *bad_recv_wr;
498 struct svc_rdma_op_ctxt *ctxt;
499 struct page *page;
500 unsigned long pa;
501 int sge_no;
502 int buflen;
503 int ret;
504
505 ctxt = svc_rdma_get_context(xprt);
506 buflen = 0;
507 ctxt->direction = DMA_FROM_DEVICE;
508 for (sge_no = 0; buflen < xprt->sc_max_req_size; sge_no++) {
509 BUG_ON(sge_no >= xprt->sc_max_sge);
510 page = svc_rdma_get_page();
511 ctxt->pages[sge_no] = page;
512 pa = ib_dma_map_page(xprt->sc_cm_id->device,
513 page, 0, PAGE_SIZE,
514 DMA_FROM_DEVICE);
515 ctxt->sge[sge_no].addr = pa;
516 ctxt->sge[sge_no].length = PAGE_SIZE;
517 ctxt->sge[sge_no].lkey = xprt->sc_phys_mr->lkey;
518 buflen += PAGE_SIZE;
519 }
520 ctxt->count = sge_no;
521 recv_wr.next = NULL;
522 recv_wr.sg_list = &ctxt->sge[0];
523 recv_wr.num_sge = ctxt->count;
524 recv_wr.wr_id = (u64)(unsigned long)ctxt;
525
526 ret = ib_post_recv(xprt->sc_qp, &recv_wr, &bad_recv_wr);
527 return ret;
528}
529
530/*
531 * This function handles the CONNECT_REQUEST event on a listening
532 * endpoint. It is passed the cma_id for the _new_ connection. The context in
533 * this cma_id is inherited from the listening cma_id and is the svc_xprt
534 * structure for the listening endpoint.
535 *
536 * This function creates a new xprt for the new connection and enqueues it on
537 * the accept queue for the listent xprt. When the listen thread is kicked, it
538 * will call the recvfrom method on the listen xprt which will accept the new
539 * connection.
540 */
541static void handle_connect_req(struct rdma_cm_id *new_cma_id)
542{
543 struct svcxprt_rdma *listen_xprt = new_cma_id->context;
544 struct svcxprt_rdma *newxprt;
545
546 /* Create a new transport */
547 newxprt = rdma_create_xprt(listen_xprt->sc_xprt.xpt_server, 0);
548 if (!newxprt) {
549 dprintk("svcrdma: failed to create new transport\n");
550 return;
551 }
552 newxprt->sc_cm_id = new_cma_id;
553 new_cma_id->context = newxprt;
554 dprintk("svcrdma: Creating newxprt=%p, cm_id=%p, listenxprt=%p\n",
555 newxprt, newxprt->sc_cm_id, listen_xprt);
556
557 /*
558 * Enqueue the new transport on the accept queue of the listening
559 * transport
560 */
561 spin_lock_bh(&listen_xprt->sc_lock);
562 list_add_tail(&newxprt->sc_accept_q, &listen_xprt->sc_accept_q);
563 spin_unlock_bh(&listen_xprt->sc_lock);
564
565 /*
566 * Can't use svc_xprt_received here because we are not on a
567 * rqstp thread
568 */
569 set_bit(XPT_CONN, &listen_xprt->sc_xprt.xpt_flags);
570 svc_xprt_enqueue(&listen_xprt->sc_xprt);
571}
572
573/*
574 * Handles events generated on the listening endpoint. These events will be
575 * either be incoming connect requests or adapter removal events.
576 */
577static int rdma_listen_handler(struct rdma_cm_id *cma_id,
578 struct rdma_cm_event *event)
579{
580 struct svcxprt_rdma *xprt = cma_id->context;
581 int ret = 0;
582
583 switch (event->event) {
584 case RDMA_CM_EVENT_CONNECT_REQUEST:
585 dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, "
586 "event=%d\n", cma_id, cma_id->context, event->event);
587 handle_connect_req(cma_id);
588 break;
589
590 case RDMA_CM_EVENT_ESTABLISHED:
591 /* Accept complete */
592 dprintk("svcrdma: Connection completed on LISTEN xprt=%p, "
593 "cm_id=%p\n", xprt, cma_id);
594 break;
595
596 case RDMA_CM_EVENT_DEVICE_REMOVAL:
597 dprintk("svcrdma: Device removal xprt=%p, cm_id=%p\n",
598 xprt, cma_id);
599 if (xprt)
600 set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
601 break;
602
603 default:
604 dprintk("svcrdma: Unexpected event on listening endpoint %p, "
605 "event=%d\n", cma_id, event->event);
606 break;
607 }
608
609 return ret;
610}
611
612static int rdma_cma_handler(struct rdma_cm_id *cma_id,
613 struct rdma_cm_event *event)
614{
615 struct svc_xprt *xprt = cma_id->context;
616 struct svcxprt_rdma *rdma =
617 container_of(xprt, struct svcxprt_rdma, sc_xprt);
618 switch (event->event) {
619 case RDMA_CM_EVENT_ESTABLISHED:
620 /* Accept complete */
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400621 svc_xprt_get(xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600622 dprintk("svcrdma: Connection completed on DTO xprt=%p, "
623 "cm_id=%p\n", xprt, cma_id);
624 clear_bit(RDMAXPRT_CONN_PENDING, &rdma->sc_flags);
625 svc_xprt_enqueue(xprt);
626 break;
627 case RDMA_CM_EVENT_DISCONNECTED:
628 dprintk("svcrdma: Disconnect on DTO xprt=%p, cm_id=%p\n",
629 xprt, cma_id);
630 if (xprt) {
631 set_bit(XPT_CLOSE, &xprt->xpt_flags);
632 svc_xprt_enqueue(xprt);
Tom Tucker120693d2008-04-24 14:17:21 -0500633 svc_xprt_put(xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600634 }
635 break;
636 case RDMA_CM_EVENT_DEVICE_REMOVAL:
637 dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, "
638 "event=%d\n", cma_id, xprt, event->event);
639 if (xprt) {
640 set_bit(XPT_CLOSE, &xprt->xpt_flags);
641 svc_xprt_enqueue(xprt);
642 }
643 break;
644 default:
645 dprintk("svcrdma: Unexpected event on DTO endpoint %p, "
646 "event=%d\n", cma_id, event->event);
647 break;
648 }
649 return 0;
650}
651
652/*
653 * Create a listening RDMA service endpoint.
654 */
655static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
656 struct sockaddr *sa, int salen,
657 int flags)
658{
659 struct rdma_cm_id *listen_id;
660 struct svcxprt_rdma *cma_xprt;
661 struct svc_xprt *xprt;
662 int ret;
663
664 dprintk("svcrdma: Creating RDMA socket\n");
665
666 cma_xprt = rdma_create_xprt(serv, 1);
667 if (!cma_xprt)
668 return ERR_PTR(ENOMEM);
669 xprt = &cma_xprt->sc_xprt;
670
671 listen_id = rdma_create_id(rdma_listen_handler, cma_xprt, RDMA_PS_TCP);
672 if (IS_ERR(listen_id)) {
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400673 svc_xprt_put(&cma_xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600674 dprintk("svcrdma: rdma_create_id failed = %ld\n",
675 PTR_ERR(listen_id));
676 return (void *)listen_id;
677 }
678 ret = rdma_bind_addr(listen_id, sa);
679 if (ret) {
Tom Tucker377f9b22007-12-12 16:13:21 -0600680 rdma_destroy_id(listen_id);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400681 svc_xprt_put(&cma_xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600682 dprintk("svcrdma: rdma_bind_addr failed = %d\n", ret);
683 return ERR_PTR(ret);
684 }
685 cma_xprt->sc_cm_id = listen_id;
686
687 ret = rdma_listen(listen_id, RPCRDMA_LISTEN_BACKLOG);
688 if (ret) {
689 rdma_destroy_id(listen_id);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400690 svc_xprt_put(&cma_xprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600691 dprintk("svcrdma: rdma_listen failed = %d\n", ret);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400692 return ERR_PTR(ret);
Tom Tucker377f9b22007-12-12 16:13:21 -0600693 }
694
695 /*
696 * We need to use the address from the cm_id in case the
697 * caller specified 0 for the port number.
698 */
699 sa = (struct sockaddr *)&cma_xprt->sc_cm_id->route.addr.src_addr;
700 svc_xprt_set_local(&cma_xprt->sc_xprt, sa, salen);
701
702 return &cma_xprt->sc_xprt;
703}
704
705/*
706 * This is the xpo_recvfrom function for listening endpoints. Its
707 * purpose is to accept incoming connections. The CMA callback handler
708 * has already created a new transport and attached it to the new CMA
709 * ID.
710 *
711 * There is a queue of pending connections hung on the listening
712 * transport. This queue contains the new svc_xprt structure. This
713 * function takes svc_xprt structures off the accept_q and completes
714 * the connection.
715 */
716static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
717{
718 struct svcxprt_rdma *listen_rdma;
719 struct svcxprt_rdma *newxprt = NULL;
720 struct rdma_conn_param conn_param;
721 struct ib_qp_init_attr qp_attr;
722 struct ib_device_attr devattr;
723 struct sockaddr *sa;
724 int ret;
725 int i;
726
727 listen_rdma = container_of(xprt, struct svcxprt_rdma, sc_xprt);
728 clear_bit(XPT_CONN, &xprt->xpt_flags);
729 /* Get the next entry off the accept list */
730 spin_lock_bh(&listen_rdma->sc_lock);
731 if (!list_empty(&listen_rdma->sc_accept_q)) {
732 newxprt = list_entry(listen_rdma->sc_accept_q.next,
733 struct svcxprt_rdma, sc_accept_q);
734 list_del_init(&newxprt->sc_accept_q);
735 }
736 if (!list_empty(&listen_rdma->sc_accept_q))
737 set_bit(XPT_CONN, &listen_rdma->sc_xprt.xpt_flags);
738 spin_unlock_bh(&listen_rdma->sc_lock);
739 if (!newxprt)
740 return NULL;
741
742 dprintk("svcrdma: newxprt from accept queue = %p, cm_id=%p\n",
743 newxprt, newxprt->sc_cm_id);
744
745 ret = ib_query_device(newxprt->sc_cm_id->device, &devattr);
746 if (ret) {
747 dprintk("svcrdma: could not query device attributes on "
748 "device %p, rc=%d\n", newxprt->sc_cm_id->device, ret);
749 goto errout;
750 }
751
752 /* Qualify the transport resource defaults with the
753 * capabilities of this particular device */
754 newxprt->sc_max_sge = min((size_t)devattr.max_sge,
755 (size_t)RPCSVC_MAXPAGES);
756 newxprt->sc_max_requests = min((size_t)devattr.max_qp_wr,
757 (size_t)svcrdma_max_requests);
758 newxprt->sc_sq_depth = RPCRDMA_SQ_DEPTH_MULT * newxprt->sc_max_requests;
759
760 newxprt->sc_ord = min((size_t)devattr.max_qp_rd_atom,
761 (size_t)svcrdma_ord);
762
763 newxprt->sc_pd = ib_alloc_pd(newxprt->sc_cm_id->device);
764 if (IS_ERR(newxprt->sc_pd)) {
765 dprintk("svcrdma: error creating PD for connect request\n");
766 goto errout;
767 }
768 newxprt->sc_sq_cq = ib_create_cq(newxprt->sc_cm_id->device,
769 sq_comp_handler,
770 cq_event_handler,
771 newxprt,
772 newxprt->sc_sq_depth,
773 0);
774 if (IS_ERR(newxprt->sc_sq_cq)) {
775 dprintk("svcrdma: error creating SQ CQ for connect request\n");
776 goto errout;
777 }
778 newxprt->sc_rq_cq = ib_create_cq(newxprt->sc_cm_id->device,
779 rq_comp_handler,
780 cq_event_handler,
781 newxprt,
782 newxprt->sc_max_requests,
783 0);
784 if (IS_ERR(newxprt->sc_rq_cq)) {
785 dprintk("svcrdma: error creating RQ CQ for connect request\n");
786 goto errout;
787 }
788
789 memset(&qp_attr, 0, sizeof qp_attr);
790 qp_attr.event_handler = qp_event_handler;
791 qp_attr.qp_context = &newxprt->sc_xprt;
792 qp_attr.cap.max_send_wr = newxprt->sc_sq_depth;
793 qp_attr.cap.max_recv_wr = newxprt->sc_max_requests;
794 qp_attr.cap.max_send_sge = newxprt->sc_max_sge;
795 qp_attr.cap.max_recv_sge = newxprt->sc_max_sge;
796 qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
797 qp_attr.qp_type = IB_QPT_RC;
798 qp_attr.send_cq = newxprt->sc_sq_cq;
799 qp_attr.recv_cq = newxprt->sc_rq_cq;
800 dprintk("svcrdma: newxprt->sc_cm_id=%p, newxprt->sc_pd=%p\n"
801 " cm_id->device=%p, sc_pd->device=%p\n"
802 " cap.max_send_wr = %d\n"
803 " cap.max_recv_wr = %d\n"
804 " cap.max_send_sge = %d\n"
805 " cap.max_recv_sge = %d\n",
806 newxprt->sc_cm_id, newxprt->sc_pd,
807 newxprt->sc_cm_id->device, newxprt->sc_pd->device,
808 qp_attr.cap.max_send_wr,
809 qp_attr.cap.max_recv_wr,
810 qp_attr.cap.max_send_sge,
811 qp_attr.cap.max_recv_sge);
812
813 ret = rdma_create_qp(newxprt->sc_cm_id, newxprt->sc_pd, &qp_attr);
814 if (ret) {
815 /*
816 * XXX: This is a hack. We need a xx_request_qp interface
817 * that will adjust the qp_attr's with a best-effort
818 * number
819 */
820 qp_attr.cap.max_send_sge -= 2;
821 qp_attr.cap.max_recv_sge -= 2;
822 ret = rdma_create_qp(newxprt->sc_cm_id, newxprt->sc_pd,
823 &qp_attr);
824 if (ret) {
825 dprintk("svcrdma: failed to create QP, ret=%d\n", ret);
826 goto errout;
827 }
828 newxprt->sc_max_sge = qp_attr.cap.max_send_sge;
829 newxprt->sc_max_sge = qp_attr.cap.max_recv_sge;
830 newxprt->sc_sq_depth = qp_attr.cap.max_send_wr;
831 newxprt->sc_max_requests = qp_attr.cap.max_recv_wr;
832 }
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400833 svc_xprt_get(&newxprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600834 newxprt->sc_qp = newxprt->sc_cm_id->qp;
835
836 /* Register all of physical memory */
837 newxprt->sc_phys_mr = ib_get_dma_mr(newxprt->sc_pd,
838 IB_ACCESS_LOCAL_WRITE |
839 IB_ACCESS_REMOTE_WRITE);
840 if (IS_ERR(newxprt->sc_phys_mr)) {
841 dprintk("svcrdma: Failed to create DMA MR ret=%d\n", ret);
842 goto errout;
843 }
844
845 /* Post receive buffers */
846 for (i = 0; i < newxprt->sc_max_requests; i++) {
847 ret = svc_rdma_post_recv(newxprt);
848 if (ret) {
849 dprintk("svcrdma: failure posting receive buffers\n");
850 goto errout;
851 }
852 }
853
854 /* Swap out the handler */
855 newxprt->sc_cm_id->event_handler = rdma_cma_handler;
856
857 /* Accept Connection */
858 set_bit(RDMAXPRT_CONN_PENDING, &newxprt->sc_flags);
859 memset(&conn_param, 0, sizeof conn_param);
860 conn_param.responder_resources = 0;
861 conn_param.initiator_depth = newxprt->sc_ord;
862 ret = rdma_accept(newxprt->sc_cm_id, &conn_param);
863 if (ret) {
864 dprintk("svcrdma: failed to accept new connection, ret=%d\n",
865 ret);
866 goto errout;
867 }
868
869 dprintk("svcrdma: new connection %p accepted with the following "
870 "attributes:\n"
871 " local_ip : %d.%d.%d.%d\n"
872 " local_port : %d\n"
873 " remote_ip : %d.%d.%d.%d\n"
874 " remote_port : %d\n"
875 " max_sge : %d\n"
876 " sq_depth : %d\n"
877 " max_requests : %d\n"
878 " ord : %d\n",
879 newxprt,
880 NIPQUAD(((struct sockaddr_in *)&newxprt->sc_cm_id->
881 route.addr.src_addr)->sin_addr.s_addr),
882 ntohs(((struct sockaddr_in *)&newxprt->sc_cm_id->
883 route.addr.src_addr)->sin_port),
884 NIPQUAD(((struct sockaddr_in *)&newxprt->sc_cm_id->
885 route.addr.dst_addr)->sin_addr.s_addr),
886 ntohs(((struct sockaddr_in *)&newxprt->sc_cm_id->
887 route.addr.dst_addr)->sin_port),
888 newxprt->sc_max_sge,
889 newxprt->sc_sq_depth,
890 newxprt->sc_max_requests,
891 newxprt->sc_ord);
892
893 /* Set the local and remote addresses in the transport */
894 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr;
895 svc_xprt_set_remote(&newxprt->sc_xprt, sa, svc_addr_len(sa));
896 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr;
897 svc_xprt_set_local(&newxprt->sc_xprt, sa, svc_addr_len(sa));
898
899 ib_req_notify_cq(newxprt->sc_sq_cq, IB_CQ_NEXT_COMP);
900 ib_req_notify_cq(newxprt->sc_rq_cq, IB_CQ_NEXT_COMP);
901 return &newxprt->sc_xprt;
902
903 errout:
904 dprintk("svcrdma: failure accepting new connection rc=%d.\n", ret);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400905 /* Take a reference in case the DTO handler runs */
906 svc_xprt_get(&newxprt->sc_xprt);
907 if (newxprt->sc_qp && !IS_ERR(newxprt->sc_qp)) {
908 ib_destroy_qp(newxprt->sc_qp);
909 svc_xprt_put(&newxprt->sc_xprt);
910 }
Tom Tucker377f9b22007-12-12 16:13:21 -0600911 rdma_destroy_id(newxprt->sc_cm_id);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400912 /* This call to put will destroy the transport */
913 svc_xprt_put(&newxprt->sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600914 return NULL;
915}
916
Tom Tucker377f9b22007-12-12 16:13:21 -0600917static void svc_rdma_release_rqst(struct svc_rqst *rqstp)
918{
Tom Tucker377f9b22007-12-12 16:13:21 -0600919}
920
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400921/*
922 * When connected, an svc_xprt has at least three references:
923 *
924 * - A reference held by the QP. We still hold that here because this
925 * code deletes the QP and puts the reference.
926 *
927 * - A reference held by the cm_id between the ESTABLISHED and
928 * DISCONNECTED events. If the remote peer disconnected first, this
929 * reference could be gone.
930 *
931 * - A reference held by the svc_recv code that called this function
932 * as part of close processing.
933 *
934 * At a minimum two references should still be held.
935 */
Tom Tucker377f9b22007-12-12 16:13:21 -0600936static void svc_rdma_detach(struct svc_xprt *xprt)
937{
938 struct svcxprt_rdma *rdma =
939 container_of(xprt, struct svcxprt_rdma, sc_xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600940 dprintk("svc: svc_rdma_detach(%p)\n", xprt);
Tom Tucker377f9b22007-12-12 16:13:21 -0600941
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400942 /* Disconnect and flush posted WQE */
943 rdma_disconnect(rdma->sc_cm_id);
944
945 /* Destroy the QP if present (not a listener) */
946 if (rdma->sc_qp && !IS_ERR(rdma->sc_qp)) {
947 ib_destroy_qp(rdma->sc_qp);
948 svc_xprt_put(xprt);
949 }
950
951 /* Destroy the CM ID */
952 rdma_destroy_id(rdma->sc_cm_id);
Tom Tucker377f9b22007-12-12 16:13:21 -0600953}
954
955static void svc_rdma_free(struct svc_xprt *xprt)
956{
957 struct svcxprt_rdma *rdma = (struct svcxprt_rdma *)xprt;
958 dprintk("svcrdma: svc_rdma_free(%p)\n", rdma);
Tom Tuckerc48cbb42008-03-11 14:31:39 -0400959 /* We should only be called from kref_put */
960 BUG_ON(atomic_read(&xprt->xpt_ref.refcount) != 0);
961 if (rdma->sc_sq_cq && !IS_ERR(rdma->sc_sq_cq))
962 ib_destroy_cq(rdma->sc_sq_cq);
963
964 if (rdma->sc_rq_cq && !IS_ERR(rdma->sc_rq_cq))
965 ib_destroy_cq(rdma->sc_rq_cq);
966
967 if (rdma->sc_phys_mr && !IS_ERR(rdma->sc_phys_mr))
968 ib_dereg_mr(rdma->sc_phys_mr);
969
970 if (rdma->sc_pd && !IS_ERR(rdma->sc_pd))
971 ib_dealloc_pd(rdma->sc_pd);
972
973 destroy_context_cache(rdma->sc_ctxt_head);
Tom Tucker377f9b22007-12-12 16:13:21 -0600974 kfree(rdma);
975}
976
Tom Tucker377f9b22007-12-12 16:13:21 -0600977static int svc_rdma_has_wspace(struct svc_xprt *xprt)
978{
979 struct svcxprt_rdma *rdma =
980 container_of(xprt, struct svcxprt_rdma, sc_xprt);
981
982 /*
983 * If there are fewer SQ WR available than required to send a
984 * simple response, return false.
985 */
986 if ((rdma->sc_sq_depth - atomic_read(&rdma->sc_sq_count) < 3))
987 return 0;
988
989 /*
990 * ...or there are already waiters on the SQ,
991 * return false.
992 */
993 if (waitqueue_active(&rdma->sc_send_wait))
994 return 0;
995
996 /* Otherwise return true. */
997 return 1;
998}
999
1000int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
1001{
1002 struct ib_send_wr *bad_wr;
1003 int ret;
1004
1005 if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
Tom Tucker9d6347a2008-04-25 15:51:27 -05001006 return -ENOTCONN;
Tom Tucker377f9b22007-12-12 16:13:21 -06001007
1008 BUG_ON(wr->send_flags != IB_SEND_SIGNALED);
1009 BUG_ON(((struct svc_rdma_op_ctxt *)(unsigned long)wr->wr_id)->wr_op !=
1010 wr->opcode);
1011 /* If the SQ is full, wait until an SQ entry is available */
1012 while (1) {
1013 spin_lock_bh(&xprt->sc_lock);
1014 if (xprt->sc_sq_depth == atomic_read(&xprt->sc_sq_count)) {
1015 spin_unlock_bh(&xprt->sc_lock);
1016 atomic_inc(&rdma_stat_sq_starve);
Tom Tuckerdbcd00e2008-05-06 11:33:11 -05001017
1018 /* See if we can opportunistically reap SQ WR to make room */
Tom Tucker377f9b22007-12-12 16:13:21 -06001019 sq_cq_reap(xprt);
1020
1021 /* Wait until SQ WR available if SQ still full */
1022 wait_event(xprt->sc_send_wait,
1023 atomic_read(&xprt->sc_sq_count) <
1024 xprt->sc_sq_depth);
Tom Tucker830bb592008-03-11 12:44:27 -05001025 if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
1026 return 0;
Tom Tucker377f9b22007-12-12 16:13:21 -06001027 continue;
1028 }
1029 /* Bumped used SQ WR count and post */
1030 ret = ib_post_send(xprt->sc_qp, wr, &bad_wr);
1031 if (!ret)
1032 atomic_inc(&xprt->sc_sq_count);
1033 else
1034 dprintk("svcrdma: failed to post SQ WR rc=%d, "
1035 "sc_sq_count=%d, sc_sq_depth=%d\n",
1036 ret, atomic_read(&xprt->sc_sq_count),
1037 xprt->sc_sq_depth);
1038 spin_unlock_bh(&xprt->sc_lock);
1039 break;
1040 }
1041 return ret;
1042}
1043
1044int svc_rdma_send_error(struct svcxprt_rdma *xprt, struct rpcrdma_msg *rmsgp,
1045 enum rpcrdma_errcode err)
1046{
1047 struct ib_send_wr err_wr;
1048 struct ib_sge sge;
1049 struct page *p;
1050 struct svc_rdma_op_ctxt *ctxt;
1051 u32 *va;
1052 int length;
1053 int ret;
1054
1055 p = svc_rdma_get_page();
1056 va = page_address(p);
1057
1058 /* XDR encode error */
1059 length = svc_rdma_xdr_encode_error(xprt, rmsgp, err, va);
1060
1061 /* Prepare SGE for local address */
1062 sge.addr = ib_dma_map_page(xprt->sc_cm_id->device,
1063 p, 0, PAGE_SIZE, DMA_FROM_DEVICE);
1064 sge.lkey = xprt->sc_phys_mr->lkey;
1065 sge.length = length;
1066
1067 ctxt = svc_rdma_get_context(xprt);
1068 ctxt->count = 1;
1069 ctxt->pages[0] = p;
1070
1071 /* Prepare SEND WR */
1072 memset(&err_wr, 0, sizeof err_wr);
1073 ctxt->wr_op = IB_WR_SEND;
1074 err_wr.wr_id = (unsigned long)ctxt;
1075 err_wr.sg_list = &sge;
1076 err_wr.num_sge = 1;
1077 err_wr.opcode = IB_WR_SEND;
1078 err_wr.send_flags = IB_SEND_SIGNALED;
1079
1080 /* Post It */
1081 ret = svc_rdma_send(xprt, &err_wr);
1082 if (ret) {
1083 dprintk("svcrdma: Error posting send = %d\n", ret);
1084 svc_rdma_put_context(ctxt, 1);
1085 }
1086
1087 return ret;
1088}