f3cae3d6f3
Fix a bug in the new code that prevented the system from correctly matching addresses. Remove comments in the show-help text indicating that we would continue in the face of incorrect specifications - leave that to the calling layer to decide. Modify the new opal_ifmatches so it returns error codes letting the caller better understand the result. Modify the oob to ensure we abort if we don't find interfaces matching specified constraints, and that we do so without multiple error messages. NOTE: we have a conflict in our standards. We have been using comma-delimited lists of interfaces for all our params. However, one param - opal_net_private_ipv4 - now uses semicolons instead of comma separators. No idea why, but it is confusing. This commit was SVN r24755.
50 строки
1.5 KiB
Plaintext
50 строки
1.5 KiB
Plaintext
# -*- text -*-
|
|
#
|
|
# Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
# This is the US/English general help file for Open MPI.
|
|
#
|
|
[stacktrace signal override]
|
|
Open MPI was inserting a signal handler for signal %d but noticed
|
|
that there is already a non-default handler installed. Open MPI's
|
|
handler was therefore not installed; your job will continue. This
|
|
warning message will only be displayed once, even if Open MPI
|
|
encounters this situation again.
|
|
|
|
To avoid displaying this warning message, you can either not install
|
|
the error handler for signal %d or you can have Open MPI not try to
|
|
install its own signal handler for this signal by setting the
|
|
"opal_signals" MCA parameter.
|
|
|
|
Signal: %d
|
|
Current opal_signal value: %s
|
|
*
|
|
[malformed net_private_ipv4]
|
|
Open MPI has detected at least one malformed IP address or netmask in
|
|
the value of the opal_net_private_ipv4 MCA parameter. The
|
|
opal_net_private_ipv4 MCA parameter accepts a semicolon-delimited list
|
|
of Classless Inter-Domain Routing (CIDR) notation specifications, each
|
|
of the form <ipaddress>/<mask>. For example:
|
|
|
|
10.0.0.0/8;172.16.0.0/12;192.168.0.0/16;169.254.0.0/16
|
|
|
|
The first detected malformed entry was %s.
|
|
#
|
|
[invalid-net-mask]
|
|
Open MPI has detected a malformed IPv4 address or netmask:
|
|
|
|
Value provided: %s
|
|
|
|
Accepted values follow the Classless Inter-Domain
|
|
Routing (CIDR) notation specifications. For example:
|
|
|
|
10.0.0.0/8
|
|
172.16/12
|
|
192.168
|
|
169.254.0.0/16
|