From 41a7ac654d6bebfb253db30b688af66520a5b244 Mon Sep 17 00:00:00 2001 From: Jianxin Xiong Date: Thu, 27 Sep 2012 20:00:07 -0700 Subject: [PATCH] Change some default option values. --- dapl/svc/mpxyd.c | 6 +++--- doc/mpxyd.conf | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dapl/svc/mpxyd.c b/dapl/svc/mpxyd.c index 56a9564..6899f04 100644 --- a/dapl/svc/mpxyd.c +++ b/dapl/svc/mpxyd.c @@ -80,12 +80,12 @@ static char gid_str[INET6_ADDRSTRLEN]; /* scif-rdma cmd and data channel parameters */ static int mix_align = 64; -static int mix_buffer_mb = 32; +static int mix_buffer_mb = 128; static int mix_buffer_sg = 128 * 1024; static int mix_cmd_depth = 50; static int mix_cmd_size = 256; -static int mix_shared_buffer = 0; -static int mix_max_msg_mb = 256; +static int mix_shared_buffer = 1; +static int mix_max_msg_mb = 64; /* cm parameters */ static int mcm_depth = 500; diff --git a/doc/mpxyd.conf b/doc/mpxyd.conf index 51e0900..0b8199f 100644 --- a/doc/mpxyd.conf +++ b/doc/mpxyd.conf @@ -57,22 +57,22 @@ mcm_depth 500 mcm_signal_rate 100 # max_message_mb: -# Specifies the maximum message size. The default is 256 (MB). +# Specifies the maximum message size. The default is 64 (MB). -max_message_mb 256 +max_message_mb 64 # buffer_pool_shared: # Specifies if the pre-allocated and pinned buffer is shared between # connections from the same client, or is private to each connection. -buffer_pool_shared 0 +buffer_pool_shared 1 # buffer_pool_mb: # Specifies the amount of memory pre-allocated and pinned for SCIF to uDAPL # RDMA proxy services. Per client or per connection depending on the setting # of "buffer_pool_shared". Recommend to increase the size if shared. -buffer_pool_mb 32 +buffer_pool_mb 128 # buffer_segment_size: # Specifies the segment size of large DMA transfers. Default is 128KB. -- 2.46.0