From 12d3c9ca221e9485d35ac025014223d5e9bdadad Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Wed, 10 Jun 2015 14:02:49 -0700 Subject: [PATCH] Revert "Fix a typo that incorrectly set the alignment threshold in the openib BTL." This reverts commit ce915b5757d428d3e914dcef50bd4b2636561bca. --- opal/mca/btl/openib/btl_openib_mca.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opal/mca/btl/openib/btl_openib_mca.c b/opal/mca/btl/openib/btl_openib_mca.c index 8918d1eeee..757a8f4225 100644 --- a/opal/mca/btl/openib/btl_openib_mca.c +++ b/opal/mca/btl/openib/btl_openib_mca.c @@ -709,11 +709,11 @@ int btl_openib_register_mca_params(void) 32, &mca_btl_openib_component.use_memalign, REGINT_GE_ZERO)); - mca_btl_openib_component.memalign_threshold = mca_btl_openib_module.super.btl_eager_limit; + mca_btl_openib_component.memalign_threshold = mca_btl_openib_component.eager_limit; tmp = mca_base_component_var_register(&mca_btl_openib_component.super.btl_version, "memalign_threshold", "Allocating memory more than btl_openib_memalign_threshhold" - "bytes will automatically be aligned to the value of btl_openib_memalign bytes." + "bytes will automatically be algined to the value of btl_openib_memalign bytes." "memalign_threshhold defaults to the same value as mca_btl_openib_eager_limit.", MCA_BASE_VAR_TYPE_SIZE_T, NULL, 0, 0, OPAL_INFO_LVL_9,