Skip to content

Commit 8aaff00

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 9d3dcc9 commit 8aaff00

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.
@@ -65,6 +65,7 @@ Master (not on release branches yet)
6565
via --enable-mpi-cxx.
6666
- Removed embedded VampirTrace. It is in maintenance mode since 2013.
6767
Please consider Score-P (score-p.org) as an external replacement.
68+
- Remove IB XRC support.
6869

6970
3.0.0 -- July, 2017
7071
-------------------

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)