From d2901f9410f4d3d57629189a4ff51571bb3b0cf3 Mon Sep 17 00:00:00 2001 From: Sean Hefty Date: Tue, 30 Nov 2010 19:31:04 -0800 Subject: [PATCH] ibacm: add cfg files to distribution acm_opts.cfg file is useful with the distribution to copy across a cluster. Update the option file with missing settings. Signed-off-by: Sean Hefty --- Makefile.am | 3 ++- acm_opts.cfg | 23 ++++++++++++++++++++++- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index f443091..957b016 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,7 +19,8 @@ man_MANS = \ man/ib_acm.7 EXTRA_DIST = include/infiniband/acm.h src/acm_mad.h src/acm_msg.h src/libacm.h \ - linux/osd.h linux/dlist.h ibacm.spec.in $(man_MANS) + linux/osd.h linux/dlist.h ibacm.spec.in $(man_MANS) acm_opts.cfg \ + acm_addr.cfg dist-hook: ibacm.spec cp ibacm.spec $(distdir) diff --git a/acm_opts.cfg b/acm_opts.cfg index a9319f2..3feadeb 100644 --- a/acm_opts.cfg +++ b/acm_opts.cfg @@ -69,6 +69,27 @@ timeout 2000 retries 15 +# resolve_depth: +# Specifies the maximum number of outstanding requests that can be in +# progress simultaneously. A larger resolve depth allows for greater +# parallelism, but increases system resource usage and subnet load. +# If the number of pending requests is greater than the resolve_depth, +# the additional requests will automatically be queued until some of +# the previous requests complete. + +resolve_depth 1 + +# sa_depth: +# Specifies the maximum number of outstanding requests to the SA that +# can be in progress simultaneously. A larger SA depth allows for greater +# parallelism, but increases system resource usage and SA load. +# If the number of pending SA requests is greater than the sa_depth, +# the additional requests will automatically be queued until some of +# the previous requests complete. The number of outstanding SA requests +# is separate from the specified resolve_depth. + +sa_depth 1 + # send_depth: # Specifies the maximum number of outstanding requests that can be in # progress simultaneously. A larger send depth allows for greater @@ -77,7 +98,7 @@ retries 15 # the additional requests will automatically be queued until some of # the previous requests complete. -send_depth 8 +send_depth 1 # recv_depth: # Specifies the number of buffers allocated and ready to receive remote -- 2.46.0