All of lore.kernel.org
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: Chuck Lever <chuck.lever@oracle.com>
Cc: linux-rdma@vger.kernel.org, linux-nfs@vger.kernel.org
Subject: Re: [PATCH v2 0/9] NFS/RDMA server patches proposed for v4.7
Date: Fri, 13 May 2016 16:12:56 -0400	[thread overview]
Message-ID: <20160513201256.GD5658@fieldses.org> (raw)
In-Reply-To: <20160504144730.6602.89073.stgit@klimt.1015granger.net>

On Wed, May 04, 2016 at 10:52:38AM -0400, Chuck Lever wrote:
> Shirley's server-side IPv6 patch, and a number of minor fixes and
> clean-ups found during code review.

Thanks, applying for 4.7.--b.

> 
> Available in the "nfsd-rdma-for-4.7" topic branch of this git repo:
> 
> git://git.linux-nfs.org/projects/cel/cel-2.6.git
> 
> Or for browsing:
> 
> http://git.linux-nfs.org/?p=cel/cel-2.6.git;a=log;h=refs/heads/nfsd-rdma-for-4.7
> 
> 
> Changes since v1:
> - Rebased on v4.6-rc6
> - Patch converting CQs to workqueue has been dropped for now
> - A number of clean-ups
> 
> ---
> 
> Chuck Lever (8):
>       svcrdma: Do not add XDR padding to xdr_buf page vector
>       svcrdma: svc_rdma_put_context() is invoked twice in Send error path
>       svcrdma: Remove superfluous line from rdma_read_chunks()
>       svcrdma: Post Receives only for forward channel requests
>       svcrdma: Drain QP before freeing svcrdma_xprt
>       svcrdma: Eliminate code duplication in svc_rdma_recvfrom()
>       svcrdma: Generalize svc_rdma_xdr_decode_req()
>       svcrdma: Simplify the check for backward direction replies
> 
> Shirley Ma (1):
>       svcrdma: Support IPv6 with NFS/RDMA
> 
> 
>  fs/nfsd/nfs3xdr.c                        |    2 -
>  include/linux/sunrpc/svc_rdma.h          |    2 -
>  net/sunrpc/xprtrdma/svc_rdma_marshal.c   |   32 ++++++++++-----
>  net/sunrpc/xprtrdma/svc_rdma_recvfrom.c  |   65 ++++++++----------------------
>  net/sunrpc/xprtrdma/svc_rdma_sendto.c    |   28 ++++++-------
>  net/sunrpc/xprtrdma/svc_rdma_transport.c |   17 +++++++-
>  6 files changed, 70 insertions(+), 76 deletions(-)
> 
> --
> Chuck Lever

WARNING: multiple messages have this Message-ID (diff)
From: "J. Bruce Fields" <bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org>
To: Chuck Lever <chuck.lever-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-nfs-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v2 0/9] NFS/RDMA server patches proposed for v4.7
Date: Fri, 13 May 2016 16:12:56 -0400	[thread overview]
Message-ID: <20160513201256.GD5658@fieldses.org> (raw)
In-Reply-To: <20160504144730.6602.89073.stgit-Hs+gFlyCn65vLzlybtyyYzGyq/o6K9yX@public.gmane.org>

On Wed, May 04, 2016 at 10:52:38AM -0400, Chuck Lever wrote:
> Shirley's server-side IPv6 patch, and a number of minor fixes and
> clean-ups found during code review.

Thanks, applying for 4.7.--b.

> 
> Available in the "nfsd-rdma-for-4.7" topic branch of this git repo:
> 
> git://git.linux-nfs.org/projects/cel/cel-2.6.git
> 
> Or for browsing:
> 
> http://git.linux-nfs.org/?p=cel/cel-2.6.git;a=log;h=refs/heads/nfsd-rdma-for-4.7
> 
> 
> Changes since v1:
> - Rebased on v4.6-rc6
> - Patch converting CQs to workqueue has been dropped for now
> - A number of clean-ups
> 
> ---
> 
> Chuck Lever (8):
>       svcrdma: Do not add XDR padding to xdr_buf page vector
>       svcrdma: svc_rdma_put_context() is invoked twice in Send error path
>       svcrdma: Remove superfluous line from rdma_read_chunks()
>       svcrdma: Post Receives only for forward channel requests
>       svcrdma: Drain QP before freeing svcrdma_xprt
>       svcrdma: Eliminate code duplication in svc_rdma_recvfrom()
>       svcrdma: Generalize svc_rdma_xdr_decode_req()
>       svcrdma: Simplify the check for backward direction replies
> 
> Shirley Ma (1):
>       svcrdma: Support IPv6 with NFS/RDMA
> 
> 
>  fs/nfsd/nfs3xdr.c                        |    2 -
>  include/linux/sunrpc/svc_rdma.h          |    2 -
>  net/sunrpc/xprtrdma/svc_rdma_marshal.c   |   32 ++++++++++-----
>  net/sunrpc/xprtrdma/svc_rdma_recvfrom.c  |   65 ++++++++----------------------
>  net/sunrpc/xprtrdma/svc_rdma_sendto.c    |   28 ++++++-------
>  net/sunrpc/xprtrdma/svc_rdma_transport.c |   17 +++++++-
>  6 files changed, 70 insertions(+), 76 deletions(-)
> 
> --
> Chuck Lever
--
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

  parent reply	other threads:[~2016-05-13 20:12 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-04 14:52 [PATCH v2 0/9] NFS/RDMA server patches proposed for v4.7 Chuck Lever
2016-05-04 14:52 ` Chuck Lever
2016-05-04 14:52 ` [PATCH v2 1/9] svcrdma: Support IPv6 with NFS/RDMA Chuck Lever
2016-05-04 14:52   ` Chuck Lever
2016-05-04 14:52 ` [PATCH v2 2/9] svcrdma: Do not add XDR padding to xdr_buf page vector Chuck Lever
2016-05-04 14:52   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 3/9] svcrdma: svc_rdma_put_context() is invoked twice in Send error path Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 4/9] svcrdma: Remove superfluous line from rdma_read_chunks() Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 5/9] svcrdma: Post Receives only for forward channel requests Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 6/9] svcrdma: Drain QP before freeing svcrdma_xprt Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 7/9] svcrdma: Eliminate code duplication in svc_rdma_recvfrom() Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 8/9] svcrdma: Generalize svc_rdma_xdr_decode_req() Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-04 14:53 ` [PATCH v2 9/9] svcrdma: Simplify the check for backward direction replies Chuck Lever
2016-05-04 14:53   ` Chuck Lever
2016-05-13 20:12 ` J. Bruce Fields [this message]
2016-05-13 20:12   ` [PATCH v2 0/9] NFS/RDMA server patches proposed for v4.7 J. Bruce Fields

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=20160513201256.GD5658@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=chuck.lever@oracle.com \
    --cc=linux-nfs@vger.kernel.org \
    --cc=linux-rdma@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.