[Pkg-openmpi-commits] r178 - in /openmpi/trunk/debian: changelog patches/series patches/ssh-bugfix
manuel at users.alioth.debian.org
manuel at users.alioth.debian.org
Wed Apr 1 19:15:46 UTC 2009
Author: manuel
Date: Wed Apr 1 19:15:46 2009
New Revision: 178
URL: http://svn.debian.org/wsvn/pkg-openmpi/?sc=1&rev=178
Log:
Backported fix for SSH localhost issue
Added:
openmpi/trunk/debian/patches/ssh-bugfix
Modified:
openmpi/trunk/debian/changelog
openmpi/trunk/debian/patches/series
Modified: openmpi/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-openmpi/openmpi/trunk/debian/changelog?rev=178&op=diff
==============================================================================
--- openmpi/trunk/debian/changelog (original)
+++ openmpi/trunk/debian/changelog Wed Apr 1 19:15:46 2009
@@ -6,8 +6,9 @@
* Fixed build issues on Sparc. (Closes: #519725)
* Faked SONAME change by renaming library package. (Closes: #512616)
* Made libopenmpi-dev depend on libibverbs-dev.
-
- -- Manuel Prinz <manuel at debian.org> Tue, 31 Mar 2009 23:34:58 +0200
+ * Backported bugfix for SSH failures when running on localhost.
+
+ -- Manuel Prinz <manuel at debian.org> Wed, 01 Apr 2009 21:14:50 +0200
openmpi (1.3-2) unstable; urgency=low
Modified: openmpi/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-openmpi/openmpi/trunk/debian/patches/series?rev=178&op=diff
==============================================================================
--- openmpi/trunk/debian/patches/series (original)
+++ openmpi/trunk/debian/patches/series Wed Apr 1 19:15:46 2009
@@ -13,3 +13,8 @@
# If this works, it may be included upstream. (Unfortunately, it does not.
# We should wait for libtool 2.2 to get into unstable before trying again.)
#mips-support
+
+# Backported bugfix that causes Open MPI to fail when running on localhost.
+# This is changeset r20856 in upstream's SVN repo and will be included in
+# the 1.3.2 release.
+ssh-bugfix
Added: openmpi/trunk/debian/patches/ssh-bugfix
URL: http://svn.debian.org/wsvn/pkg-openmpi/openmpi/trunk/debian/patches/ssh-bugfix?rev=178&op=file
==============================================================================
--- openmpi/trunk/debian/patches/ssh-bugfix (added)
+++ openmpi/trunk/debian/patches/ssh-bugfix Wed Apr 1 19:15:46 2009
@@ -1,0 +1,12 @@
+--- a/orte/mca/ras/base/ras_base_node.c
++++ b/orte/mca/ras/base/ras_base_node.c
+@@ -97,7 +97,8 @@
+ * first position since it is the first one entered. We need to check to see
+ * if this node is the same as the HNP's node so we don't double-enter it
+ */
+- if (opal_ifislocal(node->name)) {
++ if (0 == strcmp(node->name, hnp_node->name) ||
++ opal_ifislocal(node->name)) {
+ OPAL_OUTPUT_VERBOSE((5, orte_ras_base.ras_output,
+ "%s ras:base:node_insert updating HNP info to %ld slots",
+ ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
More information about the Pkg-openmpi-commits
mailing list