From 89a4258dfcc197e6d099d7b3f4805aa0b042f32e Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Tue, 24 Jul 2012 12:48:12 +0000 Subject: [PATCH] Shorten the help message, per http://www.open-mpi.org/community/lists/devel/2012/07/11314.php. This commit was SVN r26853. --- opal/mca/hwloc/base/hwloc_base_open.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opal/mca/hwloc/base/hwloc_base_open.c b/opal/mca/hwloc/base/hwloc_base_open.c index a97794a262..3c77320b77 100644 --- a/opal/mca/hwloc/base/hwloc_base_open.c +++ b/opal/mca/hwloc/base/hwloc_base_open.c @@ -96,7 +96,10 @@ int opal_hwloc_base_open(void) break; } mca_base_param_reg_string_name("hwloc", "base_mem_alloc_policy", - "Policy to determine where general memory allocations are placed (this is not memory binding). If using direct launch, this policy will not be in effect until after MPI_INIT. A value of \"none\" means that no memory policy is applied. A value of \"local_only\" means that all memory allocations will be restricted to the local NUMA node where each process is placed. Note that operating system paging policies are unaffected by this setting. For example, if \"local_only\" is used and local NUMA node memory is exhausted, a new memory allocation may cause paging.", + "General memory allocations placement policy (this is not memory binding). " + "\"none\" means that no memory policy is applied. \"local_only\" means that a process' memory allocations will be restricted to its local NUMA node. " + "If using direct launch, this policy will not be in effect until after MPI_INIT. " + "Note that operating system paging policies are unaffected by this setting. For example, if \"local_only\" is used and local NUMA node memory is exhausted, a new memory allocation may cause paging.", false, false, str_value, &str_value); if (strcasecmp(str_value, "none") == 0) { opal_hwloc_base_map = OPAL_HWLOC_BASE_MAP_NONE;