From 3037fb1c57b65db4e90e0b762d08fe6e05478ea4 Mon Sep 17 00:00:00 2001 From: Morris Jette <jette@schedmd.com> Date: Fri, 4 Sep 2015 08:41:15 -0700 Subject: [PATCH] Add function to get TmpFS configuration parameter Desired for MPI support --- src/common/slurm_protocol_api.c | 18 ++++++++++++++++++ src/common/slurm_protocol_api.h | 6 ++++++ 2 files changed, 24 insertions(+) diff --git a/src/common/slurm_protocol_api.c b/src/common/slurm_protocol_api.c index e84c73e5d38..5293cc46314 100644 --- a/src/common/slurm_protocol_api.c +++ b/src/common/slurm_protocol_api.c @@ -938,6 +938,24 @@ char *slurm_get_state_save_location(void) return state_save_loc; } +/* slurm_get_tmp_fs + * returns the TmpFS configuration parameter from slurmctld_conf object + * RET char * - tmp_fs, MUST be xfreed by caller + */ +extern char *slurm_get_tmp_fs(void) +{ + char *tmp_fs = NULL; + slurm_ctl_conf_t *conf = NULL; + + if (slurmdbd_conf) { + } else { + conf = slurm_conf_lock(); + tmp_fs = xstrdup(conf->tmp_fs); + slurm_conf_unlock(); + } + return tmp_fs; +} + /* slurm_get_auth_type * returns the authentication type from slurmctld_conf object * RET char * - auth type, MUST be xfreed by caller diff --git a/src/common/slurm_protocol_api.h b/src/common/slurm_protocol_api.h index ef36ad0e8b2..b8663977ef5 100644 --- a/src/common/slurm_protocol_api.h +++ b/src/common/slurm_protocol_api.h @@ -381,6 +381,12 @@ uint16_t slurm_get_private_data(void); */ char *slurm_get_state_save_location(void); +/* slurm_get_tmp_fs + * returns the TmpFS configuration parameter from slurmctld_conf object + * RET char * - tmp_fs, MUST be xfreed by caller + */ +extern char *slurm_get_tmp_fs(void); + /* slurm_get_auth_type * returns the authentication type from slurmctld_conf object * RET char * - auth type, MUST be xfreed by caller -- GitLab