From 01963af15a6c88b2f5ea676d6cbbb230fbd8cf0b Mon Sep 17 00:00:00 2001 From: Arlin Davis Date: Thu, 4 Jun 2015 16:52:11 -0700 Subject: [PATCH] mpxyd: set options bug fix for mcm_ib_inline Signed-off-by: Arlin Davis --- dapl/svc/util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dapl/svc/util.c b/dapl/svc/util.c index e82c1a9..8b5db68 100644 --- a/dapl/svc/util.c +++ b/dapl/svc/util.c @@ -422,10 +422,11 @@ void mpxy_set_options( int debug_mode ) mcm_affinity_base_hca = atoi(value); else if (!strcasecmp("mcm_affinity_base_mic", opt)) mcm_affinity_base_mic = atoi(value); - else if (!strcasecmp("mcm_ib_inline", opt)) + else if (!strcasecmp("mcm_ib_inline", opt)) { mcm_ib_inline = atoi(value); if (mcm_ib_inline) mcm_ib_inline = max(atoi(value), MCM_IB_INLINE); + } else if (!strcasecmp("mcm_perf_profile", opt)) mcm_profile = atoi(value); else if (!strcasecmp("mcm_eager_completion", opt)) -- 2.46.0