1cbfb53801
specify btl_tcp_if_include because btl_tcp_if_exclude is defaulted to the loopback devices. This commit does a few things: * Introduce a new OPAL MCA base function: mca_base_param_check_exclusive_string(). It checks to see that the ''user'' does not set two MCA parameters that are mutually exclusive by checking the source of those MCS param values. * Use the above function in many BTLs (and the OOB TCP) to ensure that <foo>_if_include and <foo>_if_exclude are not both specified ''by the user''. * Re-arrange many of these BTLs to move their MCA registration code into a separate component_register() function (vs. the component_open() function). This code has been nominally reviewed and checked by Ralph, George, Terry, and Shiqing. This commit was SVN r25043. The following SVN revision numbers were found above: r24976 --> open-mpi/ompi@8f4ac54336
55 строки
1.8 KiB
Plaintext
55 строки
1.8 KiB
Plaintext
# -*- text -*-
|
|
#
|
|
# Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
# University Research and Technology
|
|
# Corporation. All rights reserved.
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
# University of Stuttgart. All rights reserved.
|
|
# Copyright (c) 2004-2005 The Regents of the University of California.
|
|
# All rights reserved.
|
|
# Copyright (c) 2008-2011 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
# This is the US/English help file for Open MPI MCA error messages.
|
|
#
|
|
[read-only-param-set]
|
|
WARNING: A user-supplied value attempted to override the read-only MCA
|
|
parameter named "%s".
|
|
|
|
The user-supplied value was ignored.
|
|
#
|
|
[missing-param-file]
|
|
Process %d Unable to locate the parameter file "%s" in the following search path:
|
|
%s
|
|
#
|
|
[deprecated mca param env]
|
|
A deprecated MCA parameter value was specified in the environment or
|
|
on the command line. Deprecated MCA parameters should be avoided;
|
|
they may disappear in future releases.
|
|
|
|
Deprecated parameter: %s
|
|
#
|
|
[deprecated mca param file]
|
|
A deprecated MCA parameter value was specified in an MCA parameter
|
|
file. Deprecated MCA parameters should be avoided; they may disappear
|
|
in future releases.
|
|
|
|
Deprecated parameter: %s
|
|
#
|
|
[mutually exclusive params]
|
|
Two mutually-exclusive MCA parameters were specified. This can result
|
|
in undefined behavior, such as ignoring the components that the MCA
|
|
parameters are supposed to affect.
|
|
|
|
1st MCA parameter: %s
|
|
Source of value: %s
|
|
2nd MCA parameter: %s
|
|
Source of value: %s
|