Skip to content

Commit ebffade

Browse files
committed
iof/base: remove the unused iof_base_input_files MCA parameter
this option was only used by the iof/mr_hnp (aka Map/Reduce) component that is no more part of master nor v3 branches. Signed-off-by: Gilles Gouaillardet <[email protected]>
1 parent 57f946a commit ebffade

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

orte/mca/iof/base/base.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
* Copyright (c) 2015-2017 Intel, Inc. All rights reserved.
1616
* Copyright (c) 2017 IBM Corporation. All rights reserved.
1717
* Copyright (c) 2017 Mellanox Technologies. All rights reserved.
18+
* Copyright (c) 2018 Research Organization for Information Science
19+
* and Technology (RIST). All rights reserved.
1820
* $COPYRIGHT$
1921
*
2022
* Additional copyrights may follow
@@ -144,7 +146,6 @@ ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_iof_write_output_t);
144146
/* the iof globals struct */
145147
struct orte_iof_base_t {
146148
size_t output_limit;
147-
char *input_files;
148149
orte_iof_sink_t *iof_write_stdout;
149150
orte_iof_sink_t *iof_write_stderr;
150151
bool redirect_app_stderr_to_stdout;

orte/mca/iof/base/iof_base_frame.c

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Copyright (c) 2013 Los Alamos National Security, LLC. All rights reserved.
1313
* Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
1414
* Copyright (c) 2015-2017 Intel, Inc. All rights reserved.
15-
* Copyright (c) 2015-2017 Research Organization for Information Science
15+
* Copyright (c) 2015-2018 Research Organization for Information Science
1616
* and Technology (RIST). All rights reserved.
1717
* Copyright (c) 2017 IBM Corporation. All rights reserved.
1818
* Copyright (c) 2017 Mellanox Technologies. All rights reserved.
@@ -72,15 +72,6 @@ static int orte_iof_base_register(mca_base_register_flag_t flags)
7272
MCA_BASE_VAR_SCOPE_READONLY,
7373
&orte_iof_base.output_limit);
7474

75-
/* check for files to be sent to stdin of procs */
76-
orte_iof_base.input_files = NULL;
77-
(void) mca_base_var_register("orte", "iof","base", "input_files",
78-
"Comma-separated list of input files to be read and sent to stdin of procs (default: NULL)",
79-
MCA_BASE_VAR_TYPE_STRING, NULL, 0, 0,
80-
OPAL_INFO_LVL_9,
81-
MCA_BASE_VAR_SCOPE_READONLY,
82-
&orte_iof_base.input_files);
83-
8475
/* Redirect application stderr to stdout (at source) */
8576
orte_iof_base.redirect_app_stderr_to_stdout = false;
8677
(void) mca_base_var_register("orte", "iof","base", "redirect_app_stderr_to_stdout",

0 commit comments

Comments
 (0)