svcrdma: Double the default credit limit
authorChuck Lever <chuck.lever@oracle.com>
Tue, 22 Jul 2014 21:48:04 +0000 (17:48 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Wed, 23 Jul 2014 18:20:48 +0000 (14:20 -0400)
The RDMA credit limit controls how many concurrent RPCs are allowed
per connection.

An NFS/RDMA client and server exchange their credit limits in the
RPC/RDMA headers. The Linux client and the Solaris client and server
allow 32 credits. The Linux server allows only 16, which limits its
performance.

Set the server's default credit limit to 32, like the other well-
known implementations, so the out-of-the-shrinkwrap performance of
the Linux server is better.

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
include/linux/sunrpc/svc_rdma.h

index 5cf99a0163681ec2a1bee5c6a97171e82f361c53..975da754c778d35921eee53cddb2913cf5ef698e 100644 (file)
@@ -174,8 +174,7 @@ struct svcxprt_rdma {
  * page size of 4k, or 32k * 2 ops / 4k = 16 outstanding RDMA_READ.  */
 #define RPCRDMA_ORD             (64/4)
 #define RPCRDMA_SQ_DEPTH_MULT   8
-#define RPCRDMA_MAX_THREADS     16
-#define RPCRDMA_MAX_REQUESTS    16
+#define RPCRDMA_MAX_REQUESTS    32
 #define RPCRDMA_MAX_REQ_SIZE    4096
 
 /* svc_rdma_marshal.c */
This page took 0.025239 seconds and 5 git commands to generate.