|
@@ -1,4 +1,6 @@
|
|
|
+// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
|
|
|
/*
|
|
|
+ * Copyright (c) 2015-2018 Oracle. All rights reserved.
|
|
|
* Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved.
|
|
|
* Copyright (c) 2005-2007 Network Appliance, Inc. All rights reserved.
|
|
|
*
|
|
@@ -40,26 +42,30 @@
|
|
|
* Author: Tom Tucker <tom@opengridcomputing.com>
|
|
|
*/
|
|
|
|
|
|
-#include <linux/sunrpc/svc_xprt.h>
|
|
|
-#include <linux/sunrpc/addr.h>
|
|
|
-#include <linux/sunrpc/debug.h>
|
|
|
-#include <linux/sunrpc/rpc_rdma.h>
|
|
|
#include <linux/interrupt.h>
|
|
|
#include <linux/sched.h>
|
|
|
#include <linux/slab.h>
|
|
|
#include <linux/spinlock.h>
|
|
|
#include <linux/workqueue.h>
|
|
|
+#include <linux/export.h>
|
|
|
+
|
|
|
#include <rdma/ib_verbs.h>
|
|
|
#include <rdma/rdma_cm.h>
|
|
|
#include <rdma/rw.h>
|
|
|
+
|
|
|
+#include <linux/sunrpc/addr.h>
|
|
|
+#include <linux/sunrpc/debug.h>
|
|
|
+#include <linux/sunrpc/rpc_rdma.h>
|
|
|
+#include <linux/sunrpc/svc_xprt.h>
|
|
|
#include <linux/sunrpc/svc_rdma.h>
|
|
|
-#include <linux/export.h>
|
|
|
+
|
|
|
#include "xprt_rdma.h"
|
|
|
+#include <trace/events/rpcrdma.h>
|
|
|
|
|
|
#define RPCDBG_FACILITY RPCDBG_SVCXPRT
|
|
|
|
|
|
-static int svc_rdma_post_recv(struct svcxprt_rdma *xprt);
|
|
|
-static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *, int);
|
|
|
+static struct svcxprt_rdma *svc_rdma_create_xprt(struct svc_serv *serv,
|
|
|
+ struct net *net);
|
|
|
static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
|
|
|
struct net *net,
|
|
|
struct sockaddr *sa, int salen,
|
|
@@ -123,7 +129,7 @@ static struct svc_xprt *svc_rdma_bc_create(struct svc_serv *serv,
|
|
|
struct svcxprt_rdma *cma_xprt;
|
|
|
struct svc_xprt *xprt;
|
|
|
|
|
|
- cma_xprt = rdma_create_xprt(serv, 0);
|
|
|
+ cma_xprt = svc_rdma_create_xprt(serv, net);
|
|
|
if (!cma_xprt)
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
xprt = &cma_xprt->sc_xprt;
|
|
@@ -152,133 +158,20 @@ static void svc_rdma_bc_free(struct svc_xprt *xprt)
|
|
|
}
|
|
|
#endif /* CONFIG_SUNRPC_BACKCHANNEL */
|
|
|
|
|
|
-static struct svc_rdma_op_ctxt *alloc_ctxt(struct svcxprt_rdma *xprt,
|
|
|
- gfp_t flags)
|
|
|
-{
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
-
|
|
|
- ctxt = kmalloc(sizeof(*ctxt), flags);
|
|
|
- if (ctxt) {
|
|
|
- ctxt->xprt = xprt;
|
|
|
- INIT_LIST_HEAD(&ctxt->list);
|
|
|
- }
|
|
|
- return ctxt;
|
|
|
-}
|
|
|
-
|
|
|
-static bool svc_rdma_prealloc_ctxts(struct svcxprt_rdma *xprt)
|
|
|
-{
|
|
|
- unsigned int i;
|
|
|
-
|
|
|
- /* Each RPC/RDMA credit can consume one Receive and
|
|
|
- * one Send WQE at the same time.
|
|
|
- */
|
|
|
- i = xprt->sc_sq_depth + xprt->sc_rq_depth;
|
|
|
-
|
|
|
- while (i--) {
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
-
|
|
|
- ctxt = alloc_ctxt(xprt, GFP_KERNEL);
|
|
|
- if (!ctxt) {
|
|
|
- dprintk("svcrdma: No memory for RDMA ctxt\n");
|
|
|
- return false;
|
|
|
- }
|
|
|
- list_add(&ctxt->list, &xprt->sc_ctxts);
|
|
|
- }
|
|
|
- return true;
|
|
|
-}
|
|
|
-
|
|
|
-struct svc_rdma_op_ctxt *svc_rdma_get_context(struct svcxprt_rdma *xprt)
|
|
|
-{
|
|
|
- struct svc_rdma_op_ctxt *ctxt = NULL;
|
|
|
-
|
|
|
- spin_lock(&xprt->sc_ctxt_lock);
|
|
|
- xprt->sc_ctxt_used++;
|
|
|
- if (list_empty(&xprt->sc_ctxts))
|
|
|
- goto out_empty;
|
|
|
-
|
|
|
- ctxt = list_first_entry(&xprt->sc_ctxts,
|
|
|
- struct svc_rdma_op_ctxt, list);
|
|
|
- list_del(&ctxt->list);
|
|
|
- spin_unlock(&xprt->sc_ctxt_lock);
|
|
|
-
|
|
|
-out:
|
|
|
- ctxt->count = 0;
|
|
|
- ctxt->mapped_sges = 0;
|
|
|
- return ctxt;
|
|
|
-
|
|
|
-out_empty:
|
|
|
- /* Either pre-allocation missed the mark, or send
|
|
|
- * queue accounting is broken.
|
|
|
- */
|
|
|
- spin_unlock(&xprt->sc_ctxt_lock);
|
|
|
-
|
|
|
- ctxt = alloc_ctxt(xprt, GFP_NOIO);
|
|
|
- if (ctxt)
|
|
|
- goto out;
|
|
|
-
|
|
|
- spin_lock(&xprt->sc_ctxt_lock);
|
|
|
- xprt->sc_ctxt_used--;
|
|
|
- spin_unlock(&xprt->sc_ctxt_lock);
|
|
|
- WARN_ONCE(1, "svcrdma: empty RDMA ctxt list?\n");
|
|
|
- return NULL;
|
|
|
-}
|
|
|
-
|
|
|
-void svc_rdma_unmap_dma(struct svc_rdma_op_ctxt *ctxt)
|
|
|
-{
|
|
|
- struct svcxprt_rdma *xprt = ctxt->xprt;
|
|
|
- struct ib_device *device = xprt->sc_cm_id->device;
|
|
|
- unsigned int i;
|
|
|
-
|
|
|
- for (i = 0; i < ctxt->mapped_sges; i++)
|
|
|
- ib_dma_unmap_page(device,
|
|
|
- ctxt->sge[i].addr,
|
|
|
- ctxt->sge[i].length,
|
|
|
- ctxt->direction);
|
|
|
- ctxt->mapped_sges = 0;
|
|
|
-}
|
|
|
-
|
|
|
-void svc_rdma_put_context(struct svc_rdma_op_ctxt *ctxt, int free_pages)
|
|
|
-{
|
|
|
- struct svcxprt_rdma *xprt = ctxt->xprt;
|
|
|
- int i;
|
|
|
-
|
|
|
- if (free_pages)
|
|
|
- for (i = 0; i < ctxt->count; i++)
|
|
|
- put_page(ctxt->pages[i]);
|
|
|
-
|
|
|
- spin_lock(&xprt->sc_ctxt_lock);
|
|
|
- xprt->sc_ctxt_used--;
|
|
|
- list_add(&ctxt->list, &xprt->sc_ctxts);
|
|
|
- spin_unlock(&xprt->sc_ctxt_lock);
|
|
|
-}
|
|
|
-
|
|
|
-static void svc_rdma_destroy_ctxts(struct svcxprt_rdma *xprt)
|
|
|
-{
|
|
|
- while (!list_empty(&xprt->sc_ctxts)) {
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
-
|
|
|
- ctxt = list_first_entry(&xprt->sc_ctxts,
|
|
|
- struct svc_rdma_op_ctxt, list);
|
|
|
- list_del(&ctxt->list);
|
|
|
- kfree(ctxt);
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
/* QP event handler */
|
|
|
static void qp_event_handler(struct ib_event *event, void *context)
|
|
|
{
|
|
|
struct svc_xprt *xprt = context;
|
|
|
|
|
|
+ trace_svcrdma_qp_error(event, (struct sockaddr *)&xprt->xpt_remote);
|
|
|
switch (event->event) {
|
|
|
/* These are considered benign events */
|
|
|
case IB_EVENT_PATH_MIG:
|
|
|
case IB_EVENT_COMM_EST:
|
|
|
case IB_EVENT_SQ_DRAINED:
|
|
|
case IB_EVENT_QP_LAST_WQE_REACHED:
|
|
|
- dprintk("svcrdma: QP event %s (%d) received for QP=%p\n",
|
|
|
- ib_event_msg(event->event), event->event,
|
|
|
- event->element.qp);
|
|
|
break;
|
|
|
+
|
|
|
/* These are considered fatal events */
|
|
|
case IB_EVENT_PATH_MIG_ERR:
|
|
|
case IB_EVENT_QP_FATAL:
|
|
@@ -286,111 +179,34 @@ static void qp_event_handler(struct ib_event *event, void *context)
|
|
|
case IB_EVENT_QP_ACCESS_ERR:
|
|
|
case IB_EVENT_DEVICE_FATAL:
|
|
|
default:
|
|
|
- dprintk("svcrdma: QP ERROR event %s (%d) received for QP=%p, "
|
|
|
- "closing transport\n",
|
|
|
- ib_event_msg(event->event), event->event,
|
|
|
- event->element.qp);
|
|
|
set_bit(XPT_CLOSE, &xprt->xpt_flags);
|
|
|
svc_xprt_enqueue(xprt);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * svc_rdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
|
|
|
- * @cq: completion queue
|
|
|
- * @wc: completed WR
|
|
|
- *
|
|
|
- */
|
|
|
-static void svc_rdma_wc_receive(struct ib_cq *cq, struct ib_wc *wc)
|
|
|
-{
|
|
|
- struct svcxprt_rdma *xprt = cq->cq_context;
|
|
|
- struct ib_cqe *cqe = wc->wr_cqe;
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
-
|
|
|
- /* WARNING: Only wc->wr_cqe and wc->status are reliable */
|
|
|
- ctxt = container_of(cqe, struct svc_rdma_op_ctxt, cqe);
|
|
|
- svc_rdma_unmap_dma(ctxt);
|
|
|
-
|
|
|
- if (wc->status != IB_WC_SUCCESS)
|
|
|
- goto flushed;
|
|
|
-
|
|
|
- /* All wc fields are now known to be valid */
|
|
|
- ctxt->byte_len = wc->byte_len;
|
|
|
- spin_lock(&xprt->sc_rq_dto_lock);
|
|
|
- list_add_tail(&ctxt->list, &xprt->sc_rq_dto_q);
|
|
|
- spin_unlock(&xprt->sc_rq_dto_lock);
|
|
|
-
|
|
|
- svc_rdma_post_recv(xprt);
|
|
|
-
|
|
|
- set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
|
|
|
- if (test_bit(RDMAXPRT_CONN_PENDING, &xprt->sc_flags))
|
|
|
- goto out;
|
|
|
- goto out_enqueue;
|
|
|
-
|
|
|
-flushed:
|
|
|
- if (wc->status != IB_WC_WR_FLUSH_ERR)
|
|
|
- pr_err("svcrdma: Recv: %s (%u/0x%x)\n",
|
|
|
- ib_wc_status_msg(wc->status),
|
|
|
- wc->status, wc->vendor_err);
|
|
|
- set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
|
|
|
- svc_rdma_put_context(ctxt, 1);
|
|
|
-
|
|
|
-out_enqueue:
|
|
|
- svc_xprt_enqueue(&xprt->sc_xprt);
|
|
|
-out:
|
|
|
- svc_xprt_put(&xprt->sc_xprt);
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * svc_rdma_wc_send - Invoked by RDMA provider for each polled Send WC
|
|
|
- * @cq: completion queue
|
|
|
- * @wc: completed WR
|
|
|
- *
|
|
|
- */
|
|
|
-void svc_rdma_wc_send(struct ib_cq *cq, struct ib_wc *wc)
|
|
|
-{
|
|
|
- struct svcxprt_rdma *xprt = cq->cq_context;
|
|
|
- struct ib_cqe *cqe = wc->wr_cqe;
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
-
|
|
|
- atomic_inc(&xprt->sc_sq_avail);
|
|
|
- wake_up(&xprt->sc_send_wait);
|
|
|
-
|
|
|
- ctxt = container_of(cqe, struct svc_rdma_op_ctxt, cqe);
|
|
|
- svc_rdma_unmap_dma(ctxt);
|
|
|
- svc_rdma_put_context(ctxt, 1);
|
|
|
-
|
|
|
- if (unlikely(wc->status != IB_WC_SUCCESS)) {
|
|
|
- set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
|
|
|
- svc_xprt_enqueue(&xprt->sc_xprt);
|
|
|
- if (wc->status != IB_WC_WR_FLUSH_ERR)
|
|
|
- pr_err("svcrdma: Send: %s (%u/0x%x)\n",
|
|
|
- ib_wc_status_msg(wc->status),
|
|
|
- wc->status, wc->vendor_err);
|
|
|
- }
|
|
|
-
|
|
|
- svc_xprt_put(&xprt->sc_xprt);
|
|
|
-}
|
|
|
-
|
|
|
-static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *serv,
|
|
|
- int listener)
|
|
|
+static struct svcxprt_rdma *svc_rdma_create_xprt(struct svc_serv *serv,
|
|
|
+ struct net *net)
|
|
|
{
|
|
|
struct svcxprt_rdma *cma_xprt = kzalloc(sizeof *cma_xprt, GFP_KERNEL);
|
|
|
|
|
|
- if (!cma_xprt)
|
|
|
+ if (!cma_xprt) {
|
|
|
+ dprintk("svcrdma: failed to create new transport\n");
|
|
|
return NULL;
|
|
|
- svc_xprt_init(&init_net, &svc_rdma_class, &cma_xprt->sc_xprt, serv);
|
|
|
+ }
|
|
|
+ svc_xprt_init(net, &svc_rdma_class, &cma_xprt->sc_xprt, serv);
|
|
|
INIT_LIST_HEAD(&cma_xprt->sc_accept_q);
|
|
|
INIT_LIST_HEAD(&cma_xprt->sc_rq_dto_q);
|
|
|
INIT_LIST_HEAD(&cma_xprt->sc_read_complete_q);
|
|
|
- INIT_LIST_HEAD(&cma_xprt->sc_ctxts);
|
|
|
+ INIT_LIST_HEAD(&cma_xprt->sc_send_ctxts);
|
|
|
+ INIT_LIST_HEAD(&cma_xprt->sc_recv_ctxts);
|
|
|
INIT_LIST_HEAD(&cma_xprt->sc_rw_ctxts);
|
|
|
init_waitqueue_head(&cma_xprt->sc_send_wait);
|
|
|
|
|
|
spin_lock_init(&cma_xprt->sc_lock);
|
|
|
spin_lock_init(&cma_xprt->sc_rq_dto_lock);
|
|
|
- spin_lock_init(&cma_xprt->sc_ctxt_lock);
|
|
|
+ spin_lock_init(&cma_xprt->sc_send_lock);
|
|
|
+ spin_lock_init(&cma_xprt->sc_recv_lock);
|
|
|
spin_lock_init(&cma_xprt->sc_rw_ctxt_lock);
|
|
|
|
|
|
/*
|
|
@@ -401,70 +217,9 @@ static struct svcxprt_rdma *rdma_create_xprt(struct svc_serv *serv,
|
|
|
*/
|
|
|
set_bit(XPT_CONG_CTRL, &cma_xprt->sc_xprt.xpt_flags);
|
|
|
|
|
|
- if (listener) {
|
|
|
- strcpy(cma_xprt->sc_xprt.xpt_remotebuf, "listener");
|
|
|
- set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);
|
|
|
- }
|
|
|
-
|
|
|
return cma_xprt;
|
|
|
}
|
|
|
|
|
|
-static int
|
|
|
-svc_rdma_post_recv(struct svcxprt_rdma *xprt)
|
|
|
-{
|
|
|
- struct ib_recv_wr recv_wr, *bad_recv_wr;
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
- struct page *page;
|
|
|
- dma_addr_t pa;
|
|
|
- int sge_no;
|
|
|
- int buflen;
|
|
|
- int ret;
|
|
|
-
|
|
|
- ctxt = svc_rdma_get_context(xprt);
|
|
|
- buflen = 0;
|
|
|
- ctxt->direction = DMA_FROM_DEVICE;
|
|
|
- ctxt->cqe.done = svc_rdma_wc_receive;
|
|
|
- for (sge_no = 0; buflen < xprt->sc_max_req_size; sge_no++) {
|
|
|
- if (sge_no >= xprt->sc_max_sge) {
|
|
|
- pr_err("svcrdma: Too many sges (%d)\n", sge_no);
|
|
|
- goto err_put_ctxt;
|
|
|
- }
|
|
|
- page = alloc_page(GFP_KERNEL);
|
|
|
- if (!page)
|
|
|
- goto err_put_ctxt;
|
|
|
- ctxt->pages[sge_no] = page;
|
|
|
- pa = ib_dma_map_page(xprt->sc_cm_id->device,
|
|
|
- page, 0, PAGE_SIZE,
|
|
|
- DMA_FROM_DEVICE);
|
|
|
- if (ib_dma_mapping_error(xprt->sc_cm_id->device, pa))
|
|
|
- goto err_put_ctxt;
|
|
|
- svc_rdma_count_mappings(xprt, ctxt);
|
|
|
- ctxt->sge[sge_no].addr = pa;
|
|
|
- ctxt->sge[sge_no].length = PAGE_SIZE;
|
|
|
- ctxt->sge[sge_no].lkey = xprt->sc_pd->local_dma_lkey;
|
|
|
- ctxt->count = sge_no + 1;
|
|
|
- buflen += PAGE_SIZE;
|
|
|
- }
|
|
|
- recv_wr.next = NULL;
|
|
|
- recv_wr.sg_list = &ctxt->sge[0];
|
|
|
- recv_wr.num_sge = ctxt->count;
|
|
|
- recv_wr.wr_cqe = &ctxt->cqe;
|
|
|
-
|
|
|
- svc_xprt_get(&xprt->sc_xprt);
|
|
|
- ret = ib_post_recv(xprt->sc_qp, &recv_wr, &bad_recv_wr);
|
|
|
- if (ret) {
|
|
|
- svc_rdma_unmap_dma(ctxt);
|
|
|
- svc_rdma_put_context(ctxt, 1);
|
|
|
- svc_xprt_put(&xprt->sc_xprt);
|
|
|
- }
|
|
|
- return ret;
|
|
|
-
|
|
|
- err_put_ctxt:
|
|
|
- svc_rdma_unmap_dma(ctxt);
|
|
|
- svc_rdma_put_context(ctxt, 1);
|
|
|
- return -ENOMEM;
|
|
|
-}
|
|
|
-
|
|
|
static void
|
|
|
svc_rdma_parse_connect_private(struct svcxprt_rdma *newxprt,
|
|
|
struct rdma_conn_param *param)
|
|
@@ -504,15 +259,12 @@ static void handle_connect_req(struct rdma_cm_id *new_cma_id,
|
|
|
struct sockaddr *sa;
|
|
|
|
|
|
/* Create a new transport */
|
|
|
- newxprt = rdma_create_xprt(listen_xprt->sc_xprt.xpt_server, 0);
|
|
|
- if (!newxprt) {
|
|
|
- dprintk("svcrdma: failed to create new transport\n");
|
|
|
+ newxprt = svc_rdma_create_xprt(listen_xprt->sc_xprt.xpt_server,
|
|
|
+ listen_xprt->sc_xprt.xpt_net);
|
|
|
+ if (!newxprt)
|
|
|
return;
|
|
|
- }
|
|
|
newxprt->sc_cm_id = new_cma_id;
|
|
|
new_cma_id->context = newxprt;
|
|
|
- dprintk("svcrdma: Creating newxprt=%p, cm_id=%p, listenxprt=%p\n",
|
|
|
- newxprt, newxprt->sc_cm_id, listen_xprt);
|
|
|
svc_rdma_parse_connect_private(newxprt, param);
|
|
|
|
|
|
/* Save client advertised inbound read limit for use later in accept. */
|
|
@@ -543,9 +295,11 @@ static void handle_connect_req(struct rdma_cm_id *new_cma_id,
|
|
|
static int rdma_listen_handler(struct rdma_cm_id *cma_id,
|
|
|
struct rdma_cm_event *event)
|
|
|
{
|
|
|
- struct svcxprt_rdma *xprt = cma_id->context;
|
|
|
+ struct sockaddr *sap = (struct sockaddr *)&cma_id->route.addr.src_addr;
|
|
|
int ret = 0;
|
|
|
|
|
|
+ trace_svcrdma_cm_event(event, sap);
|
|
|
+
|
|
|
switch (event->event) {
|
|
|
case RDMA_CM_EVENT_CONNECT_REQUEST:
|
|
|
dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, "
|
|
@@ -553,23 +307,8 @@ static int rdma_listen_handler(struct rdma_cm_id *cma_id,
|
|
|
rdma_event_msg(event->event), event->event);
|
|
|
handle_connect_req(cma_id, &event->param.conn);
|
|
|
break;
|
|
|
-
|
|
|
- case RDMA_CM_EVENT_ESTABLISHED:
|
|
|
- /* Accept complete */
|
|
|
- dprintk("svcrdma: Connection completed on LISTEN xprt=%p, "
|
|
|
- "cm_id=%p\n", xprt, cma_id);
|
|
|
- break;
|
|
|
-
|
|
|
- case RDMA_CM_EVENT_DEVICE_REMOVAL:
|
|
|
- dprintk("svcrdma: Device removal xprt=%p, cm_id=%p\n",
|
|
|
- xprt, cma_id);
|
|
|
- if (xprt) {
|
|
|
- set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
|
|
|
- svc_xprt_enqueue(&xprt->sc_xprt);
|
|
|
- }
|
|
|
- break;
|
|
|
-
|
|
|
default:
|
|
|
+ /* NB: No device removal upcall for INADDR_ANY listeners */
|
|
|
dprintk("svcrdma: Unexpected event on listening endpoint %p, "
|
|
|
"event = %s (%d)\n", cma_id,
|
|
|
rdma_event_msg(event->event), event->event);
|
|
@@ -582,9 +321,12 @@ static int rdma_listen_handler(struct rdma_cm_id *cma_id,
|
|
|
static int rdma_cma_handler(struct rdma_cm_id *cma_id,
|
|
|
struct rdma_cm_event *event)
|
|
|
{
|
|
|
- struct svc_xprt *xprt = cma_id->context;
|
|
|
- struct svcxprt_rdma *rdma =
|
|
|
- container_of(xprt, struct svcxprt_rdma, sc_xprt);
|
|
|
+ struct sockaddr *sap = (struct sockaddr *)&cma_id->route.addr.dst_addr;
|
|
|
+ struct svcxprt_rdma *rdma = cma_id->context;
|
|
|
+ struct svc_xprt *xprt = &rdma->sc_xprt;
|
|
|
+
|
|
|
+ trace_svcrdma_cm_event(event, sap);
|
|
|
+
|
|
|
switch (event->event) {
|
|
|
case RDMA_CM_EVENT_ESTABLISHED:
|
|
|
/* Accept complete */
|
|
@@ -597,21 +339,17 @@ static int rdma_cma_handler(struct rdma_cm_id *cma_id,
|
|
|
case RDMA_CM_EVENT_DISCONNECTED:
|
|
|
dprintk("svcrdma: Disconnect on DTO xprt=%p, cm_id=%p\n",
|
|
|
xprt, cma_id);
|
|
|
- if (xprt) {
|
|
|
- set_bit(XPT_CLOSE, &xprt->xpt_flags);
|
|
|
- svc_xprt_enqueue(xprt);
|
|
|
- svc_xprt_put(xprt);
|
|
|
- }
|
|
|
+ set_bit(XPT_CLOSE, &xprt->xpt_flags);
|
|
|
+ svc_xprt_enqueue(xprt);
|
|
|
+ svc_xprt_put(xprt);
|
|
|
break;
|
|
|
case RDMA_CM_EVENT_DEVICE_REMOVAL:
|
|
|
dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, "
|
|
|
"event = %s (%d)\n", cma_id, xprt,
|
|
|
rdma_event_msg(event->event), event->event);
|
|
|
- if (xprt) {
|
|
|
- set_bit(XPT_CLOSE, &xprt->xpt_flags);
|
|
|
- svc_xprt_enqueue(xprt);
|
|
|
- svc_xprt_put(xprt);
|
|
|
- }
|
|
|
+ set_bit(XPT_CLOSE, &xprt->xpt_flags);
|
|
|
+ svc_xprt_enqueue(xprt);
|
|
|
+ svc_xprt_put(xprt);
|
|
|
break;
|
|
|
default:
|
|
|
dprintk("svcrdma: Unexpected event on DTO endpoint %p, "
|
|
@@ -634,16 +372,18 @@ static struct svc_xprt *svc_rdma_create(struct svc_serv *serv,
|
|
|
struct svcxprt_rdma *cma_xprt;
|
|
|
int ret;
|
|
|
|
|
|
- dprintk("svcrdma: Creating RDMA socket\n");
|
|
|
+ dprintk("svcrdma: Creating RDMA listener\n");
|
|
|
if ((sa->sa_family != AF_INET) && (sa->sa_family != AF_INET6)) {
|
|
|
dprintk("svcrdma: Address family %d is not supported.\n", sa->sa_family);
|
|
|
return ERR_PTR(-EAFNOSUPPORT);
|
|
|
}
|
|
|
- cma_xprt = rdma_create_xprt(serv, 1);
|
|
|
+ cma_xprt = svc_rdma_create_xprt(serv, net);
|
|
|
if (!cma_xprt)
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
+ set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags);
|
|
|
+ strcpy(cma_xprt->sc_xprt.xpt_remotebuf, "listener");
|
|
|
|
|
|
- listen_id = rdma_create_id(&init_net, rdma_listen_handler, cma_xprt,
|
|
|
+ listen_id = rdma_create_id(net, rdma_listen_handler, cma_xprt,
|
|
|
RDMA_PS_TCP, IB_QPT_RC);
|
|
|
if (IS_ERR(listen_id)) {
|
|
|
ret = PTR_ERR(listen_id);
|
|
@@ -708,9 +448,9 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
struct rdma_conn_param conn_param;
|
|
|
struct rpcrdma_connect_private pmsg;
|
|
|
struct ib_qp_init_attr qp_attr;
|
|
|
+ unsigned int ctxts, rq_depth;
|
|
|
struct ib_device *dev;
|
|
|
struct sockaddr *sap;
|
|
|
- unsigned int i, ctxts;
|
|
|
int ret = 0;
|
|
|
|
|
|
listen_rdma = container_of(xprt, struct svcxprt_rdma, sc_xprt);
|
|
@@ -736,24 +476,28 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
|
|
|
/* Qualify the transport resource defaults with the
|
|
|
* capabilities of this particular device */
|
|
|
- newxprt->sc_max_sge = min((size_t)dev->attrs.max_sge,
|
|
|
- (size_t)RPCSVC_MAXPAGES);
|
|
|
+ newxprt->sc_max_send_sges = dev->attrs.max_sge;
|
|
|
+ /* transport hdr, head iovec, one page list entry, tail iovec */
|
|
|
+ if (newxprt->sc_max_send_sges < 4) {
|
|
|
+ pr_err("svcrdma: too few Send SGEs available (%d)\n",
|
|
|
+ newxprt->sc_max_send_sges);
|
|
|
+ goto errout;
|
|
|
+ }
|
|
|
newxprt->sc_max_req_size = svcrdma_max_req_size;
|
|
|
newxprt->sc_max_requests = svcrdma_max_requests;
|
|
|
newxprt->sc_max_bc_requests = svcrdma_max_bc_requests;
|
|
|
- newxprt->sc_rq_depth = newxprt->sc_max_requests +
|
|
|
- newxprt->sc_max_bc_requests;
|
|
|
- if (newxprt->sc_rq_depth > dev->attrs.max_qp_wr) {
|
|
|
+ rq_depth = newxprt->sc_max_requests + newxprt->sc_max_bc_requests;
|
|
|
+ if (rq_depth > dev->attrs.max_qp_wr) {
|
|
|
pr_warn("svcrdma: reducing receive depth to %d\n",
|
|
|
dev->attrs.max_qp_wr);
|
|
|
- newxprt->sc_rq_depth = dev->attrs.max_qp_wr;
|
|
|
- newxprt->sc_max_requests = newxprt->sc_rq_depth - 2;
|
|
|
+ rq_depth = dev->attrs.max_qp_wr;
|
|
|
+ newxprt->sc_max_requests = rq_depth - 2;
|
|
|
newxprt->sc_max_bc_requests = 2;
|
|
|
}
|
|
|
newxprt->sc_fc_credits = cpu_to_be32(newxprt->sc_max_requests);
|
|
|
ctxts = rdma_rw_mr_factor(dev, newxprt->sc_port_num, RPCSVC_MAXPAGES);
|
|
|
ctxts *= newxprt->sc_max_requests;
|
|
|
- newxprt->sc_sq_depth = newxprt->sc_rq_depth + ctxts;
|
|
|
+ newxprt->sc_sq_depth = rq_depth + ctxts;
|
|
|
if (newxprt->sc_sq_depth > dev->attrs.max_qp_wr) {
|
|
|
pr_warn("svcrdma: reducing send depth to %d\n",
|
|
|
dev->attrs.max_qp_wr);
|
|
@@ -761,9 +505,6 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
}
|
|
|
atomic_set(&newxprt->sc_sq_avail, newxprt->sc_sq_depth);
|
|
|
|
|
|
- if (!svc_rdma_prealloc_ctxts(newxprt))
|
|
|
- goto errout;
|
|
|
-
|
|
|
newxprt->sc_pd = ib_alloc_pd(dev, 0);
|
|
|
if (IS_ERR(newxprt->sc_pd)) {
|
|
|
dprintk("svcrdma: error creating PD for connect request\n");
|
|
@@ -775,7 +516,7 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
dprintk("svcrdma: error creating SQ CQ for connect request\n");
|
|
|
goto errout;
|
|
|
}
|
|
|
- newxprt->sc_rq_cq = ib_alloc_cq(dev, newxprt, newxprt->sc_rq_depth,
|
|
|
+ newxprt->sc_rq_cq = ib_alloc_cq(dev, newxprt, rq_depth,
|
|
|
0, IB_POLL_WORKQUEUE);
|
|
|
if (IS_ERR(newxprt->sc_rq_cq)) {
|
|
|
dprintk("svcrdma: error creating RQ CQ for connect request\n");
|
|
@@ -788,9 +529,9 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
qp_attr.port_num = newxprt->sc_port_num;
|
|
|
qp_attr.cap.max_rdma_ctxs = ctxts;
|
|
|
qp_attr.cap.max_send_wr = newxprt->sc_sq_depth - ctxts;
|
|
|
- qp_attr.cap.max_recv_wr = newxprt->sc_rq_depth;
|
|
|
- qp_attr.cap.max_send_sge = newxprt->sc_max_sge;
|
|
|
- qp_attr.cap.max_recv_sge = newxprt->sc_max_sge;
|
|
|
+ qp_attr.cap.max_recv_wr = rq_depth;
|
|
|
+ qp_attr.cap.max_send_sge = newxprt->sc_max_send_sges;
|
|
|
+ qp_attr.cap.max_recv_sge = 1;
|
|
|
qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
|
|
|
qp_attr.qp_type = IB_QPT_RC;
|
|
|
qp_attr.send_cq = newxprt->sc_sq_cq;
|
|
@@ -815,14 +556,8 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
!rdma_ib_or_roce(dev, newxprt->sc_port_num))
|
|
|
goto errout;
|
|
|
|
|
|
- /* Post receive buffers */
|
|
|
- for (i = 0; i < newxprt->sc_max_requests; i++) {
|
|
|
- ret = svc_rdma_post_recv(newxprt);
|
|
|
- if (ret) {
|
|
|
- dprintk("svcrdma: failure posting receive buffers\n");
|
|
|
- goto errout;
|
|
|
- }
|
|
|
- }
|
|
|
+ if (!svc_rdma_post_recvs(newxprt))
|
|
|
+ goto errout;
|
|
|
|
|
|
/* Swap out the handler */
|
|
|
newxprt->sc_cm_id->event_handler = rdma_cma_handler;
|
|
@@ -856,16 +591,18 @@ static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt)
|
|
|
dprintk(" local address : %pIS:%u\n", sap, rpc_get_port(sap));
|
|
|
sap = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr;
|
|
|
dprintk(" remote address : %pIS:%u\n", sap, rpc_get_port(sap));
|
|
|
- dprintk(" max_sge : %d\n", newxprt->sc_max_sge);
|
|
|
+ dprintk(" max_sge : %d\n", newxprt->sc_max_send_sges);
|
|
|
dprintk(" sq_depth : %d\n", newxprt->sc_sq_depth);
|
|
|
dprintk(" rdma_rw_ctxs : %d\n", ctxts);
|
|
|
dprintk(" max_requests : %d\n", newxprt->sc_max_requests);
|
|
|
dprintk(" ord : %d\n", conn_param.initiator_depth);
|
|
|
|
|
|
+ trace_svcrdma_xprt_accept(&newxprt->sc_xprt);
|
|
|
return &newxprt->sc_xprt;
|
|
|
|
|
|
errout:
|
|
|
dprintk("svcrdma: failure accepting new connection rc=%d.\n", ret);
|
|
|
+ trace_svcrdma_xprt_fail(&newxprt->sc_xprt);
|
|
|
/* Take a reference in case the DTO handler runs */
|
|
|
svc_xprt_get(&newxprt->sc_xprt);
|
|
|
if (newxprt->sc_qp && !IS_ERR(newxprt->sc_qp))
|
|
@@ -896,7 +633,6 @@ static void svc_rdma_detach(struct svc_xprt *xprt)
|
|
|
{
|
|
|
struct svcxprt_rdma *rdma =
|
|
|
container_of(xprt, struct svcxprt_rdma, sc_xprt);
|
|
|
- dprintk("svc: svc_rdma_detach(%p)\n", xprt);
|
|
|
|
|
|
/* Disconnect and flush posted WQE */
|
|
|
rdma_disconnect(rdma->sc_cm_id);
|
|
@@ -908,7 +644,7 @@ static void __svc_rdma_free(struct work_struct *work)
|
|
|
container_of(work, struct svcxprt_rdma, sc_work);
|
|
|
struct svc_xprt *xprt = &rdma->sc_xprt;
|
|
|
|
|
|
- dprintk("svcrdma: %s(%p)\n", __func__, rdma);
|
|
|
+ trace_svcrdma_xprt_free(xprt);
|
|
|
|
|
|
if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
|
|
|
ib_drain_qp(rdma->sc_qp);
|
|
@@ -918,25 +654,7 @@ static void __svc_rdma_free(struct work_struct *work)
|
|
|
pr_err("svcrdma: sc_xprt still in use? (%d)\n",
|
|
|
kref_read(&xprt->xpt_ref));
|
|
|
|
|
|
- while (!list_empty(&rdma->sc_read_complete_q)) {
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
- ctxt = list_first_entry(&rdma->sc_read_complete_q,
|
|
|
- struct svc_rdma_op_ctxt, list);
|
|
|
- list_del(&ctxt->list);
|
|
|
- svc_rdma_put_context(ctxt, 1);
|
|
|
- }
|
|
|
- while (!list_empty(&rdma->sc_rq_dto_q)) {
|
|
|
- struct svc_rdma_op_ctxt *ctxt;
|
|
|
- ctxt = list_first_entry(&rdma->sc_rq_dto_q,
|
|
|
- struct svc_rdma_op_ctxt, list);
|
|
|
- list_del(&ctxt->list);
|
|
|
- svc_rdma_put_context(ctxt, 1);
|
|
|
- }
|
|
|
-
|
|
|
- /* Warn if we leaked a resource or under-referenced */
|
|
|
- if (rdma->sc_ctxt_used != 0)
|
|
|
- pr_err("svcrdma: ctxt still in use? (%d)\n",
|
|
|
- rdma->sc_ctxt_used);
|
|
|
+ svc_rdma_flush_recv_queues(rdma);
|
|
|
|
|
|
/* Final put of backchannel client transport */
|
|
|
if (xprt->xpt_bc_xprt) {
|
|
@@ -945,7 +663,8 @@ static void __svc_rdma_free(struct work_struct *work)
|
|
|
}
|
|
|
|
|
|
svc_rdma_destroy_rw_ctxts(rdma);
|
|
|
- svc_rdma_destroy_ctxts(rdma);
|
|
|
+ svc_rdma_send_ctxts_destroy(rdma);
|
|
|
+ svc_rdma_recv_ctxts_destroy(rdma);
|
|
|
|
|
|
/* Destroy the QP if present (not a listener) */
|
|
|
if (rdma->sc_qp && !IS_ERR(rdma->sc_qp))
|
|
@@ -998,51 +717,3 @@ static void svc_rdma_secure_port(struct svc_rqst *rqstp)
|
|
|
static void svc_rdma_kill_temp_xprt(struct svc_xprt *xprt)
|
|
|
{
|
|
|
}
|
|
|
-
|
|
|
-int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
|
|
|
-{
|
|
|
- struct ib_send_wr *bad_wr, *n_wr;
|
|
|
- int wr_count;
|
|
|
- int i;
|
|
|
- int ret;
|
|
|
-
|
|
|
- if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
|
|
|
- return -ENOTCONN;
|
|
|
-
|
|
|
- wr_count = 1;
|
|
|
- for (n_wr = wr->next; n_wr; n_wr = n_wr->next)
|
|
|
- wr_count++;
|
|
|
-
|
|
|
- /* If the SQ is full, wait until an SQ entry is available */
|
|
|
- while (1) {
|
|
|
- if ((atomic_sub_return(wr_count, &xprt->sc_sq_avail) < 0)) {
|
|
|
- atomic_inc(&rdma_stat_sq_starve);
|
|
|
-
|
|
|
- /* Wait until SQ WR available if SQ still full */
|
|
|
- atomic_add(wr_count, &xprt->sc_sq_avail);
|
|
|
- wait_event(xprt->sc_send_wait,
|
|
|
- atomic_read(&xprt->sc_sq_avail) > wr_count);
|
|
|
- if (test_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags))
|
|
|
- return -ENOTCONN;
|
|
|
- continue;
|
|
|
- }
|
|
|
- /* Take a transport ref for each WR posted */
|
|
|
- for (i = 0; i < wr_count; i++)
|
|
|
- svc_xprt_get(&xprt->sc_xprt);
|
|
|
-
|
|
|
- /* Bump used SQ WR count and post */
|
|
|
- ret = ib_post_send(xprt->sc_qp, wr, &bad_wr);
|
|
|
- if (ret) {
|
|
|
- set_bit(XPT_CLOSE, &xprt->sc_xprt.xpt_flags);
|
|
|
- for (i = 0; i < wr_count; i ++)
|
|
|
- svc_xprt_put(&xprt->sc_xprt);
|
|
|
- dprintk("svcrdma: failed to post SQ WR rc=%d\n", ret);
|
|
|
- dprintk(" sc_sq_avail=%d, sc_sq_depth=%d\n",
|
|
|
- atomic_read(&xprt->sc_sq_avail),
|
|
|
- xprt->sc_sq_depth);
|
|
|
- wake_up(&xprt->sc_send_wait);
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
- return ret;
|
|
|
-}
|