Skip to content

Commit 8223d4c

Browse files
committed
btl/openib: disable XRC by default
Change the default enable configure option XRC to disabled. If a user want's to give it a try they have to explicitly ask for it. Modify the configury help message to indicate it is not enabled by default. Related to #3890 Fixes #3969 Signed-off-by: Howard Pritchard <[email protected]>
1 parent 21c0319 commit 8223d4c

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

NEWS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Copyright (c) 2006-2017 Cisco Systems, Inc. All rights reserved.
1212
Copyright (c) 2006 Voltaire, Inc. All rights reserved.
1313
Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
1414
Use is subject to license terms.
15-
Copyright (c) 2006-2016 Los Alamos National Security, LLC. All rights
15+
Copyright (c) 2006-2017 Los Alamos National Security, LLC. All rights
1616
reserved.
1717
Copyright (c) 2010-2012 IBM Corporation. All rights reserved.
1818
Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
@@ -70,6 +70,7 @@ Master (not on release branches yet)
7070
orte daemon, rather than the mpirun process. This may be useful to set to
7171
true when using SLURM, as it improves interoperability with SLURM's signal
7272
propagation tools. By default it is set to false, except for Cray XC systems.
73+
- Remove IB XRC support from the OpenIB BTL due to lack of support.
7374

7475
3.0.0 -- July, 2017
7576
-------------------

config/opal_check_openfabrics.m4

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Copyright (c) 2004-2005 The Regents of the University of California.
1212
# All rights reserved.
1313
# Copyright (c) 2006-2016 Cisco Systems, Inc. All rights reserved.
14-
# Copyright (c) 2006-2016 Los Alamos National Security, LLC. All rights
14+
# Copyright (c) 2006-2017 Los Alamos National Security, LLC. All rights
1515
# reserved.
1616
# Copyright (c) 2006-2009 Mellanox Technologies. All rights reserved.
1717
# Copyright (c) 2010-2012 Oracle and/or its affiliates. All rights reserved.
@@ -301,12 +301,13 @@ AC_DEFUN([OPAL_CHECK_OPENFABRICS],[
301301

302302
AC_DEFUN([OPAL_CHECK_OPENFABRICS_CM_ARGS],[
303303
#
304-
# ConnectX XRC support
304+
# ConnectX XRC support - disabled see issue #3890
305305
#
306-
AC_ARG_ENABLE([openib-connectx-xrc],
307-
[AC_HELP_STRING([--enable-openib-connectx-xrc],
308-
[Enable ConnectX XRC support in the openib BTL. If you do not have InfiniBand ConnectX adapters, you may disable the ConnectX XRC support. If you do not know which InfiniBand adapter is installed on your cluster, leave this option enabled (default: enabled)])],
309-
[enable_connectx_xrc="$enableval"], [enable_connectx_xrc="yes"])
306+
dnl AC_ARG_ENABLE([openib-connectx-xrc],
307+
dnl [AC_HELP_STRING([--enable-openib-connectx-xrc],
308+
dnl [Enable ConnectX XRC support in the openib BTL. (default: disabled)])],
309+
dnl [enable_connectx_xrc="$enableval"], [enable_connectx_xrc="no"])
310+
enable_connectx_xrc="no"
310311
#
311312
# Unconnect Datagram (UD) based connection manager
312313
#

0 commit comments

Comments
 (0)