Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 4f26a90

Browse files
committed
Merge pull request #1106 from hjelmn/v2.x_typos
memory: fix typo
2 parents f33631b + 8c8cc5b commit 4f26a90

File tree

6 files changed

+2
-14
lines changed

6 files changed

+2
-14
lines changed

contrib/platform/lanl/cray_xc_cle5.2/debug-common

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,5 @@ enable_mca_direct=pml-ob1
3232
# enable development headers
3333
with_devel_headers=yes
3434

35-
# enable ptmalloc (enables lazy deregistration)
36-
with_memory_manager=linux
37-
3835
# disable valgrind
3936
with_valgrind=no

contrib/platform/lanl/cray_xc_cle5.2/optimized-common

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,5 @@ enable_mca_direct=pml-ob1
4040
# enable development headers
4141
with_devel_headers=yes
4242

43-
# enable ptmalloc (enables lazy deregistration)
44-
with_memory_manager=linux
45-
4643
# disable valgrind
4744
with_valgrind=no

contrib/platform/lanl/darwin/darwin-common

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ enable_cxx_exceptions=no
2222
# Disable components not needed on any TOSS platform
2323
enable_mca_no_build=carto,crs,filem,routed-linear,snapc,pml-dr,pml-crcp2,pml-crcpw,pml-v,pml-example,crcp,btl-tcp
2424

25-
# Enable malloc hooks for mpi_leave_pinned
26-
with_memory_manager=linux
27-
2825
# TOSS2 uses slurm
2926
with_slurm=yes
3027
with_tm=no

contrib/platform/lanl/toss/toss-common

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ enable_cxx_exceptions=no
2222
# Disable components not needed on any TOSS platform
2323
enable_mca_no_build=carto,crs,filem,routed-linear,snapc,pml-dr,pml-crcp2,pml-crcpw,pml-v,pml-example,crcp,btl-tcp
2424

25-
# Enable malloc hooks for mpi_leave_pinned
26-
with_memory_manager=linux
27-
2825
# TOSS2 uses slurm
2926
with_slurm=yes
3027
with_tm=no

opal/mca/memory/base/memory_base_open.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static int opal_memory_base_open(mca_base_open_flag_t flags)
113113
#if MEMORY_LINUX_PTMALLOC2
114114
/* See above comment about linux/ptmalloc2 about why this
115115
abstraction violation is here. */
116-
if (0 == strcmp (tmp->mca_component_name, "linux")) {
116+
if (0 == strcmp (tmp->memoryc_version.mca_component_name, "linux")) {
117117
/* if ptmalloc is enabled always use it */
118118
priority = 1000000;
119119
}

opal/mca/memory/linux/configure.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#
2020
# $HEADER$
2121
#
22-
AC_DEFUN([MCA_opal_memory_linux_PRIORITY], [40])
22+
AC_DEFUN([MCA_opal_memory_linux_PRIORITY], [41])
2323

2424
AC_DEFUN([MCA_opal_memory_linux_COMPILE_MODE], [
2525
AC_MSG_CHECKING([for MCA component $2:$3 compile mode])

0 commit comments

Comments
 (0)