linux-rdma.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 00/24] Series short description
@ 2014-05-28 14:31 Chuck Lever
       [not found] ` <20140528142521.23214.39655.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
  0 siblings, 1 reply; 32+ messages in thread
From: Chuck Lever @ 2014-05-28 14:31 UTC (permalink / raw)
  To: linux-nfs-u79uwXL29TY76Z2rM5mHXA,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA
  Cc: Anna.Schumaker-HgOvQuBEEgTQT0dZR+AlfA

Updates since v4:

- Rebased on v3.15-rc7
- Addressed Trond's review comment in "Reset connection timeout..."
- Wake up RPC tasks only when cwnd is growing in "Avoid deadlock when..."
- Fix patch description of "Remove MEMWINDOWS registration modes"

Pull from the "nfs-rdma-client" branch of my git repo:

  git://git.linux-nfs.org/projects/cel/cel-2.6.git

---

Allen Andrews (1):
      nfs-rdma: Fix for FMR leaks

Chuck Lever (21):
      xprtrdma: Disconnect on registration failure
      xprtrdma: Remove BUG_ON() call sites
      xprtrdma: Avoid deadlock when credit window is reset
      SUNRPC: Move congestion window constants to header file
      xprtrdma: Reset connection timeout after successful reconnect
      xprtrdma: Use macros for reconnection timeout constants
      xprtrdma: Remove Tavor MTU setting
      xprtrdma: Ensure ia->ri_id->qp is not NULL when reconnecting
      xprtrdma: Reduce the number of hardway buffer allocations
      xprtrdma: Limit work done by completion handler
      xprtrmda: Reduce calls to ib_poll_cq() in completion handlers
      xprtrmda: Reduce lock contention in completion handlers
      xprtrdma: Split the completion queue
      xprtrdma: Make rpcrdma_ep_destroy() return void
      xprtrdma: Simplify rpcrdma_deregister_external() synopsis
      xprtrdma: mount reports "Invalid mount option" if memreg mode not supported
      xprtrdma: Fall back to MTHCAFMR when FRMR is not supported
      xprtrdma: Remove REGISTER memory registration mode
      xprtrdma: Remove MEMWINDOWS registration modes
      xprtrdma: Remove BOUNCEBUFFERS memory registration mode
      xprtrdma: RPC/RDMA must invoke xprt_wake_pending_tasks() in process context

Shirley Ma (1):
      xprtrdma: Allocate missing pagelist

Steve Wise (1):
      xprtrdma: mind the device's max fast register page list depth


 include/linux/sunrpc/xprt.h     |    6 
 net/sunrpc/xprt.c               |   28 -
 net/sunrpc/xprtrdma/rpc_rdma.c  |  119 +++---
 net/sunrpc/xprtrdma/transport.c |   90 ++---
 net/sunrpc/xprtrdma/verbs.c     |  753 ++++++++++++++++-----------------------
 net/sunrpc/xprtrdma/xprt_rdma.h |   17 +
 6 files changed, 411 insertions(+), 602 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

^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2014-06-09 13:11 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-28 14:31 [PATCH v5 00/24] Series short description Chuck Lever
     [not found] ` <20140528142521.23214.39655.stgit-FYjufvaPoItvLzlybtyyYzGyq/o6K9yX@public.gmane.org>
2014-05-28 14:32   ` [PATCH v5 01/24] xprtrdma: mind the device's max fast register page list depth Chuck Lever
2014-05-28 14:32   ` [PATCH v5 02/24] nfs-rdma: Fix for FMR leaks Chuck Lever
2014-05-28 14:32   ` [PATCH v5 03/24] xprtrdma: RPC/RDMA must invoke xprt_wake_pending_tasks() in process context Chuck Lever
2014-05-28 14:32   ` [PATCH v5 04/24] xprtrdma: Remove BOUNCEBUFFERS memory registration mode Chuck Lever
2014-05-28 14:32   ` [PATCH v5 05/24] xprtrdma: Remove MEMWINDOWS registration modes Chuck Lever
2014-05-28 14:32   ` [PATCH v5 06/24] xprtrdma: Remove REGISTER memory registration mode Chuck Lever
2014-05-28 14:32   ` [PATCH v5 07/24] xprtrdma: Fall back to MTHCAFMR when FRMR is not supported Chuck Lever
2014-05-28 14:33   ` [PATCH v5 08/24] xprtrdma: mount reports "Invalid mount option" if memreg mode " Chuck Lever
2014-05-28 14:33   ` [PATCH v5 09/24] xprtrdma: Simplify rpcrdma_deregister_external() synopsis Chuck Lever
2014-05-28 14:33   ` [PATCH v5 10/24] xprtrdma: Make rpcrdma_ep_destroy() return void Chuck Lever
2014-05-28 14:33   ` [PATCH v5 11/24] xprtrdma: Split the completion queue Chuck Lever
2014-05-28 14:33   ` [PATCH v5 12/24] xprtrmda: Reduce lock contention in completion handlers Chuck Lever
2014-05-28 14:33   ` [PATCH v5 13/24] xprtrmda: Reduce calls to ib_poll_cq() " Chuck Lever
2014-05-28 14:33   ` [PATCH v5 14/24] xprtrdma: Limit work done by completion handler Chuck Lever
2014-05-28 14:33   ` [PATCH v5 15/24] xprtrdma: Reduce the number of hardway buffer allocations Chuck Lever
2014-05-28 14:34   ` [PATCH v5 16/24] xprtrdma: Ensure ia->ri_id->qp is not NULL when reconnecting Chuck Lever
2014-05-28 14:34   ` [PATCH v5 17/24] xprtrdma: Remove Tavor MTU setting Chuck Lever
2014-05-28 14:34   ` [PATCH v5 18/24] xprtrdma: Allocate missing pagelist Chuck Lever
2014-05-28 14:34   ` [PATCH v5 19/24] xprtrdma: Use macros for reconnection timeout constants Chuck Lever
2014-05-28 14:34   ` [PATCH v5 20/24] xprtrdma: Reset connection timeout after successful reconnect Chuck Lever
2014-05-28 14:34   ` [PATCH v5 21/24] SUNRPC: Move congestion window constants to header file Chuck Lever
2014-05-28 14:34   ` [PATCH v5 22/24] xprtrdma: Avoid deadlock when credit window is reset Chuck Lever
2014-05-28 14:35   ` [PATCH v5 23/24] xprtrdma: Remove BUG_ON() call sites Chuck Lever
2014-05-28 14:35   ` [PATCH v5 24/24] xprtrdma: Disconnect on registration failure Chuck Lever
2014-05-28 23:15   ` [PATCH v5 00/24] Series short description Chuck Lever
2014-05-29 16:59   ` Steve Wise
2014-05-29 18:28     ` Devesh Sharma
     [not found]       ` <EE7902D3F51F404C82415C4803930ACD3FE01148-DWYeeINJQrxExQ8dmkPuX0M9+F4ksjoh@public.gmane.org>
2014-05-29 18:31         ` Steve Wise
2014-05-29 18:36           ` Devesh Sharma
2014-06-09  9:55     ` Or Gerlitz
     [not found]       ` <CAJZOPZ+SBT=yX3v4kvzg4TsZU2=L-05r3=ht-4y86Ox44M3mpQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-06-09 13:11         ` Anna Schumaker

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).