From 49a757e0bd12b7e1e7cdefb815c2ef75d1afb16e Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 13 Aug 2012 20:48:13 +0000 Subject: [PATCH] Silly me - now that all daemons are stripping their prefix on the backend, we no longer need to do it as they report This commit was SVN r27023. --- orte/mca/plm/base/plm_base_launch_support.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/orte/mca/plm/base/plm_base_launch_support.c b/orte/mca/plm/base/plm_base_launch_support.c index 8e3fdbb5b3..a393288d99 100644 --- a/orte/mca/plm/base/plm_base_launch_support.c +++ b/orte/mca/plm/base/plm_base_launch_support.c @@ -620,21 +620,6 @@ void orte_plm_base_daemon_callback(int status, orte_process_name_t* sender, nodename = ptr; } } - if (orte_process_info.strip_prefix_from_node_names) { - /* remove all leading characters and zeroes */ - ptr = nodename; - while (idx < (int)strlen(nodename) && - (isalpha(nodename[idx]) || '0' == nodename[idx])) { - idx++; - } - if (idx == (int)strlen(nodename)) { - ptr = strdup(nodename); - } else { - ptr = strdup(&nodename[idx]); - } - free(nodename); - nodename = ptr; - } OPAL_OUTPUT_VERBOSE((5, orte_plm_globals.output, "%s plm:base:orted_report_launch attempting to assign daemon %s to node %s", ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),