From 19aa7b6923f84ffb8a558263e2dede4661862342 Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Tue, 9 Nov 2010 00:05:31 +0000 Subject: rpc-transport/rdma: set the default quota of recv buffers to 128. - since quota is returned once the reply is recieved, 32 is too less value. Signed-off-by: Raghavendra G Signed-off-by: Anand V. Avati BUG: 2060 (Infiniteband errors on large file find) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2060 --- rpc/rpc-transport/rdma/src/rdma.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rpc') diff --git a/rpc/rpc-transport/rdma/src/rdma.c b/rpc/rpc-transport/rdma/src/rdma.c index 3fae9d795de..22f40e826b3 100644 --- a/rpc/rpc-transport/rdma/src/rdma.c +++ b/rpc/rpc-transport/rdma/src/rdma.c @@ -3564,8 +3564,8 @@ rdma_options_init (rpc_transport_t *this) options->send_size = GLUSTERFS_RDMA_INLINE_THRESHOLD;/*this->ctx->page_size * 4; 512 KB*/ options->recv_size = GLUSTERFS_RDMA_INLINE_THRESHOLD;/*this->ctx->page_size * 4; 512 KB*/ - options->send_count = 32; - options->recv_count = 32; + options->send_count = 128; + options->recv_count = 128; temp = dict_get (this->options, "transport.rdma.work-request-send-count"); -- cgit