From: Sagi Grimberg <sagig-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
To: Chuck Lever <chuck.lever-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v1 08/16] xprtrdma: Add "reset MRs" memreg op
Date: Mon, 16 Mar 2015 12:38:36 +0200 [thread overview]
Message-ID: <5506B2AC.9040508@dev.mellanox.co.il> (raw)
In-Reply-To: <20150313212747.22783.98300.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
On 3/13/2015 11:27 PM, Chuck Lever wrote:
> This method is invoked when a transport instance is about to be
> reconnected. Each Memory Region object is reset to its initial
> state.
>
> Signed-off-by: Chuck Lever <chuck.lever-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
> ---
> net/sunrpc/xprtrdma/fmr_ops.c | 23 ++++++++
> net/sunrpc/xprtrdma/frwr_ops.c | 46 ++++++++++++++++
> net/sunrpc/xprtrdma/physical_ops.c | 6 ++
> net/sunrpc/xprtrdma/verbs.c | 103 +-----------------------------------
> net/sunrpc/xprtrdma/xprt_rdma.h | 1
> 5 files changed, 78 insertions(+), 101 deletions(-)
>
> diff --git a/net/sunrpc/xprtrdma/fmr_ops.c b/net/sunrpc/xprtrdma/fmr_ops.c
> index 1501db0..1ccb3de 100644
> --- a/net/sunrpc/xprtrdma/fmr_ops.c
> +++ b/net/sunrpc/xprtrdma/fmr_ops.c
> @@ -156,10 +156,33 @@ fmr_op_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
> i += __fmr_unmap(r_xprt, &req->rl_segments[i]);
> }
>
> +/* After a disconnect, unmap all FMRs.
> + *
> + * This is invoked only in the transport connect worker in order
> + * to serialize with rpcrdma_register_fmr_external().
> + */
> +static void
> +fmr_op_reset(struct rpcrdma_xprt *r_xprt)
> +{
> + struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
> + struct rpcrdma_mw *r;
> + LIST_HEAD(list);
> + int rc;
> +
> + list_for_each_entry(r, &buf->rb_all, mw_all)
> + list_add(&r->r.fmr->list, &list);
> +
> + rc = ib_unmap_fmr(&list);
> + if (rc)
> + dprintk("RPC: %s: ib_unmap_fmr failed %i\n",
> + __func__, rc);
> +}
> +
> const struct rpcrdma_memreg_ops rpcrdma_fmr_memreg_ops = {
> .ro_map = fmr_op_map,
> .ro_unmap = fmr_op_unmap,
> .ro_maxpages = fmr_op_maxpages,
> .ro_init = fmr_op_init,
> + .ro_reset = fmr_op_reset,
> .ro_displayname = "fmr",
> };
> diff --git a/net/sunrpc/xprtrdma/frwr_ops.c b/net/sunrpc/xprtrdma/frwr_ops.c
> index 975372c..b4ce0e5 100644
> --- a/net/sunrpc/xprtrdma/frwr_ops.c
> +++ b/net/sunrpc/xprtrdma/frwr_ops.c
> @@ -81,6 +81,18 @@ out_err:
> return nsegs;
> }
>
> +static void
> +__frwr_release(struct rpcrdma_mw *r)
> +{
> + int rc;
> +
> + rc = ib_dereg_mr(r->r.frmr.fr_mr);
> + if (rc)
> + dprintk("RPC: %s: ib_dereg_mr status %i\n",
> + __func__, rc);
> + ib_free_fast_reg_page_list(r->r.frmr.fr_pgl);
> +}
> +
> /* FRWR mode conveys a list of pages per chunk segment. The
> * maximum length of that list is the FRWR page list depth.
> */
> @@ -226,10 +238,44 @@ frwr_op_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
> i += __frwr_unmap(r_xprt, &req->rl_segments[i]);
> }
>
> +/* After a disconnect, a flushed FAST_REG_MR can leave an FRMR in
> + * an unusable state. Find FRMRs in this state and dereg / reg
> + * each. FRMRs that are VALID and attached to an rpcrdma_req are
> + * also torn down.
> + *
> + * This gives all in-use FRMRs a fresh rkey and leaves them INVALID.
> + *
> + * This is invoked only in the transport connect worker in order
> + * to serialize with rpcrdma_register_frmr_external().
> + */
> +static void
> +frwr_op_reset(struct rpcrdma_xprt *r_xprt)
> +{
> + struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
> + struct ib_device *device = r_xprt->rx_ia.ri_id->device;
> + unsigned int depth = r_xprt->rx_ia.ri_max_frmr_depth;
> + struct ib_pd *pd = r_xprt->rx_ia.ri_pd;
> + struct rpcrdma_mw *r;
> + int rc;
> +
> + list_for_each_entry(r, &buf->rb_all, mw_all) {
> + if (r->r.frmr.fr_state == FRMR_IS_INVALID)
> + continue;
> +
> + __frwr_release(r);
> + rc = __frwr_init(r, pd, device, depth);
> + if (rc)
> + continue;
> +
> + r->r.frmr.fr_state = FRMR_IS_INVALID;
> + }
> +}
> +
> const struct rpcrdma_memreg_ops rpcrdma_frwr_memreg_ops = {
> .ro_map = frwr_op_map,
> .ro_unmap = frwr_op_unmap,
> .ro_maxpages = frwr_op_maxpages,
> .ro_init = frwr_op_init,
> + .ro_reset = frwr_op_reset,
> .ro_displayname = "frwr",
> };
> diff --git a/net/sunrpc/xprtrdma/physical_ops.c b/net/sunrpc/xprtrdma/physical_ops.c
> index ae2b0bc..0afc691 100644
> --- a/net/sunrpc/xprtrdma/physical_ops.c
> +++ b/net/sunrpc/xprtrdma/physical_ops.c
> @@ -62,10 +62,16 @@ physical_op_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_req *req,
> rpcrdma_unmap_one(&r_xprt->rx_ia, &req->rl_segments[i]);
> }
>
> +static void
> +physical_op_reset(struct rpcrdma_xprt *r_xprt)
> +{
> +}
> +
> const struct rpcrdma_memreg_ops rpcrdma_physical_memreg_ops = {
> .ro_map = physical_op_map,
> .ro_unmap = physical_op_unmap,
> .ro_maxpages = physical_op_maxpages,
> .ro_init = physical_op_init,
> + .ro_reset = physical_op_reset,
> .ro_displayname = "physical",
> };
> diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
> index d7810d6..e17d91a 100644
> --- a/net/sunrpc/xprtrdma/verbs.c
> +++ b/net/sunrpc/xprtrdma/verbs.c
> @@ -63,9 +63,6 @@
> # define RPCDBG_FACILITY RPCDBG_TRANS
> #endif
>
> -static void rpcrdma_reset_frmrs(struct rpcrdma_ia *);
> -static void rpcrdma_reset_fmrs(struct rpcrdma_ia *);
> -
> /*
> * internal functions
> */
> @@ -944,21 +941,9 @@ retry:
> rpcrdma_ep_disconnect(ep, ia);
> rpcrdma_flush_cqs(ep);
>
> - switch (ia->ri_memreg_strategy) {
> - case RPCRDMA_FRMR:
> - rpcrdma_reset_frmrs(ia);
> - break;
> - case RPCRDMA_MTHCAFMR:
> - rpcrdma_reset_fmrs(ia);
> - break;
> - case RPCRDMA_ALLPHYSICAL:
> - break;
> - default:
> - rc = -EIO;
> - goto out;
> - }
> -
> xprt = container_of(ia, struct rpcrdma_xprt, rx_ia);
> + ia->ri_ops->ro_reset(xprt);
> +
> id = rpcrdma_create_id(xprt, ia,
> (struct sockaddr *)&xprt->rx_data.addr);
> if (IS_ERR(id)) {
> @@ -1288,90 +1273,6 @@ rpcrdma_buffer_destroy(struct rpcrdma_buffer *buf)
> kfree(buf->rb_pool);
> }
>
> -/* After a disconnect, unmap all FMRs.
> - *
> - * This is invoked only in the transport connect worker in order
> - * to serialize with rpcrdma_register_fmr_external().
> - */
> -static void
> -rpcrdma_reset_fmrs(struct rpcrdma_ia *ia)
> -{
> - struct rpcrdma_xprt *r_xprt =
> - container_of(ia, struct rpcrdma_xprt, rx_ia);
> - struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
> - struct list_head *pos;
> - struct rpcrdma_mw *r;
> - LIST_HEAD(l);
> - int rc;
> -
> - list_for_each(pos, &buf->rb_all) {
> - r = list_entry(pos, struct rpcrdma_mw, mw_all);
> -
> - INIT_LIST_HEAD(&l);
> - list_add(&r->r.fmr->list, &l);
> - rc = ib_unmap_fmr(&l);
> - if (rc)
> - dprintk("RPC: %s: ib_unmap_fmr failed %i\n",
> - __func__, rc);
> - }
> -}
> -
> -/* After a disconnect, a flushed FAST_REG_MR can leave an FRMR in
> - * an unusable state. Find FRMRs in this state and dereg / reg
> - * each. FRMRs that are VALID and attached to an rpcrdma_req are
> - * also torn down.
> - *
> - * This gives all in-use FRMRs a fresh rkey and leaves them INVALID.
> - *
> - * This is invoked only in the transport connect worker in order
> - * to serialize with rpcrdma_register_frmr_external().
> - */
> -static void
> -rpcrdma_reset_frmrs(struct rpcrdma_ia *ia)
> -{
> - struct rpcrdma_xprt *r_xprt =
> - container_of(ia, struct rpcrdma_xprt, rx_ia);
> - struct rpcrdma_buffer *buf = &r_xprt->rx_buf;
> - struct list_head *pos;
> - struct rpcrdma_mw *r;
> - int rc;
> -
> - list_for_each(pos, &buf->rb_all) {
> - r = list_entry(pos, struct rpcrdma_mw, mw_all);
> -
> - if (r->r.frmr.fr_state == FRMR_IS_INVALID)
> - continue;
> -
> - rc = ib_dereg_mr(r->r.frmr.fr_mr);
> - if (rc)
> - dprintk("RPC: %s: ib_dereg_mr failed %i\n",
> - __func__, rc);
> - ib_free_fast_reg_page_list(r->r.frmr.fr_pgl);
> -
> - r->r.frmr.fr_mr = ib_alloc_fast_reg_mr(ia->ri_pd,
> - ia->ri_max_frmr_depth);
> - if (IS_ERR(r->r.frmr.fr_mr)) {
> - rc = PTR_ERR(r->r.frmr.fr_mr);
> - dprintk("RPC: %s: ib_alloc_fast_reg_mr"
> - " failed %i\n", __func__, rc);
> - continue;
> - }
> - r->r.frmr.fr_pgl = ib_alloc_fast_reg_page_list(
> - ia->ri_id->device,
> - ia->ri_max_frmr_depth);
> - if (IS_ERR(r->r.frmr.fr_pgl)) {
> - rc = PTR_ERR(r->r.frmr.fr_pgl);
> - dprintk("RPC: %s: "
> - "ib_alloc_fast_reg_page_list "
> - "failed %i\n", __func__, rc);
> -
> - ib_dereg_mr(r->r.frmr.fr_mr);
> - continue;
> - }
> - r->r.frmr.fr_state = FRMR_IS_INVALID;
> - }
> -}
> -
> /* "*mw" can be NULL when rpcrdma_buffer_get_mrs() fails, leaving
> * some req segments uninitialized.
> */
> diff --git a/net/sunrpc/xprtrdma/xprt_rdma.h b/net/sunrpc/xprtrdma/xprt_rdma.h
> index 4fe3c38..cdf6763 100644
> --- a/net/sunrpc/xprtrdma/xprt_rdma.h
> +++ b/net/sunrpc/xprtrdma/xprt_rdma.h
> @@ -342,6 +342,7 @@ struct rpcrdma_memreg_ops {
> struct rpcrdma_req *, unsigned int);
> size_t (*ro_maxpages)(struct rpcrdma_xprt *);
> int (*ro_init)(struct rpcrdma_xprt *);
> + void (*ro_reset)(struct rpcrdma_xprt *);
> const char *ro_displayname;
> };
>
>
Reviewed-by: Sagi Grimberg <sagig-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2015-03-16 10:38 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-13 21:26 [PATCH v1 00/16] NFS/RDMA patches proposed for 4.1 Chuck Lever
[not found] ` <20150313212517.22783.18364.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-13 21:26 ` [PATCH v1 01/16] xprtrdma: Display IPv6 addresses and port numbers correctly Chuck Lever
[not found] ` <20150313212641.22783.93522.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-15 2:50 ` Sagi Grimberg
[not found] ` <5504F37A.20803-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 16:34 ` Chuck Lever
2015-03-24 8:27 ` Devesh Sharma
[not found] ` <EE7902D3F51F404C82415C4803930ACD5DC3A952-DWYeeINJQrxExQ8dmkPuX0M9+F4ksjoh@public.gmane.org>
2015-03-24 14:43 ` Chuck Lever
2015-03-13 21:26 ` [PATCH v1 02/16] xprtrdma: Perform a full marshal on retransmit Chuck Lever
[not found] ` <20150313212650.22783.28071.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-15 3:01 ` Sagi Grimberg
2015-03-13 21:26 ` [PATCH v1 03/16] xprtrdma: Add vector of ops for each memory registration strategy Chuck Lever
[not found] ` <20150313212659.22783.28341.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-15 3:04 ` Sagi Grimberg
2015-03-13 21:27 ` [PATCH v1 04/16] xprtrdma: Add a "max_payload" op for each memreg mode Chuck Lever
[not found] ` <20150313212708.22783.70403.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:18 ` Sagi Grimberg
2015-03-13 21:27 ` [PATCH v1 05/16] xprtrdma: Add a "register_external" " Chuck Lever
[not found] ` <20150313212718.22783.10096.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:28 ` Sagi Grimberg
[not found] ` <5506B036.1040905-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 16:48 ` Chuck Lever
[not found] ` <982A021D-1B85-4AAF-89A3-302A21CF2B36-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2015-03-16 18:15 ` Sagi Grimberg
[not found] ` <55071DBB.4050500-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 20:13 ` Steve Wise
[not found] ` <55073966.30006-7bPotxP6k4+P2YhJcF5u+vpXobYPEAuW@public.gmane.org>
2015-03-16 22:11 ` Chuck Lever
[not found] ` <7595A8CB-B38B-4F01-A132-CE3BE143A897-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
2015-03-21 11:53 ` Sagi Grimberg
2015-03-13 21:27 ` [PATCH v1 06/16] xprtrdma: Add a "deregister_external" " Chuck Lever
[not found] ` <20150313212728.22783.11821.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:34 ` Sagi Grimberg
[not found] ` <5506B19F.80105-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 16:57 ` Chuck Lever
2015-03-24 11:12 ` Devesh Sharma
[not found] ` <EE7902D3F51F404C82415C4803930ACD5DC3A9C4-DWYeeINJQrxExQ8dmkPuX0M9+F4ksjoh@public.gmane.org>
2015-03-24 14:54 ` Chuck Lever
2015-03-13 21:27 ` [PATCH v1 07/16] xprtrdma: Add "init MRs" memreg op Chuck Lever
[not found] ` <20150313212738.22783.34521.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:36 ` Sagi Grimberg
2015-03-13 21:27 ` [PATCH v1 08/16] xprtrdma: Add "reset " Chuck Lever
[not found] ` <20150313212747.22783.98300.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:38 ` Sagi Grimberg [this message]
2015-03-24 11:27 ` Devesh Sharma
[not found] ` <EE7902D3F51F404C82415C4803930ACD5DC3A9E3-DWYeeINJQrxExQ8dmkPuX0M9+F4ksjoh@public.gmane.org>
2015-03-24 15:10 ` Chuck Lever
2015-03-13 21:27 ` [PATCH v1 09/16] xprtrdma: Add "destroy " Chuck Lever
[not found] ` <20150313212758.22783.67493.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:46 ` Sagi Grimberg
[not found] ` <5506B48F.6050902-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 16:59 ` Chuck Lever
2015-03-13 21:28 ` [PATCH v1 10/16] xprtrdma: Add "open" " Chuck Lever
[not found] ` <20150313212807.22783.61881.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-24 11:34 ` Devesh Sharma
[not found] ` <EE7902D3F51F404C82415C4803930ACD5DC3A9FF-DWYeeINJQrxExQ8dmkPuX0M9+F4ksjoh@public.gmane.org>
2015-03-24 15:29 ` Chuck Lever
2015-03-13 21:28 ` [PATCH v1 11/16] xprtrdma: Handle non-SEND completions via a callout Chuck Lever
[not found] ` <20150313212816.22783.49677.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 10:53 ` Sagi Grimberg
2015-03-13 21:28 ` [PATCH v1 12/16] xprtrdma: Acquire FMRs in rpcrdma_fmr_register_external() Chuck Lever
[not found] ` <20150313212825.22783.51384.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 12:28 ` Sagi Grimberg
[not found] ` <5506CC6C.8090106-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 17:03 ` Chuck Lever
2015-03-13 21:28 ` [PATCH v1 13/16] xprtrdma: Acquire MRs in rpcrdma_register_external() Chuck Lever
[not found] ` <20150313212835.22783.12326.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 12:44 ` Sagi Grimberg
[not found] ` <5506D02B.5050602-LDSdmyG8hGV8YrgS2mwiifqBs+8SCbDb@public.gmane.org>
2015-03-16 18:14 ` Chuck Lever
2015-03-13 21:28 ` [PATCH v1 14/16] xprtrdma: Remove rpcrdma_ia::ri_memreg_strategy Chuck Lever
[not found] ` <20150313212844.22783.1438.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 12:45 ` Sagi Grimberg
2015-03-13 21:28 ` [PATCH v1 15/16] xprtrdma: Make rpcrdma_{un}map_one() into inline functions Chuck Lever
[not found] ` <20150313212853.22783.62285.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2015-03-16 12:45 ` Sagi Grimberg
2015-03-13 21:29 ` [PATCH v1 16/16] xprtrdma: Split rb_lock Chuck Lever
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5506B2AC.9040508@dev.mellanox.co.il \
--to=sagig-ldsdmyg8hgv8yrgs2mwiifqbs+8scbdb@public.gmane.org \
--cc=chuck.lever-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).