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