forked from pool/slurm
Egbert Eich
f21d191e3c
- Added missing perl-base dependency. - Moved HTML docs to doc package. - Moved config man pages to a separate package: This way, they won't get installed on compute nodes. - Update to 18.08.3 * Add new burst buffer state of "teardown-fail" to indicate the burst buffer teardown operation is failing on specific buffers. * Multiple backup slurmctld daemons can be configured * Enable jobs with zero node count for creation and/or deletion of persistent burst buffers. * Add "scontrol show dwstat" command to display Cray burst buffer status. * Add "GetSysStatus" option to burst_buffer.conf file. * Add node and partition configuration options of "CpuBind" to control default task binding. * Add "NumaCpuBind" option to knl.conf * Add sbatch "--batch" option to identify features required on batch node. * Add "BatchFeatures" field to output of "scontrol show job". * Add support for "--bb" option to sbatch command. * Add new SystemComment field to job data structure and database. * Expand reservation "flags" field from 32 to 64 bits. * Add job state flag of "SIGNALING" to avoid race condition. * Properly handle srun --will-run option when there are jobs in COMPLETING state. * Properly report who is signaling a step. * Don't combine updated reservation records in sreport's reservation report. * node_features plugin - Add suport for XOR & XAND of job constraints (node feature specifications). OBS-URL: https://build.opensuse.org/request/show/650545 OBS-URL: https://build.opensuse.org/package/show/network:cluster/slurm?expand=0&rev=75
45 lines
1.3 KiB
Diff
45 lines
1.3 KiB
Diff
From: Egbert Eich <eich@suse.com>
|
|
Date: Tue Nov 20 09:52:22 2018 +0100
|
|
Subject: slurmd uses xdaemon_* for systemd
|
|
Patch-mainline: Not yet
|
|
Git-commit: 3988e62eb8c20a29a7a016f264c6d65e114cfdf4
|
|
References: bsc#1084125
|
|
|
|
Signed-off-by: Egbert Eich <eich@suse.com>
|
|
---
|
|
slurm-18.08.3/src/slurmd/slurmd/slurmd.c | 8 ++++++--
|
|
1 file changed, 6 insertions(+), 2 deletions(-)
|
|
diff --git a/slurm-18.08.3/src/slurmd/slurmd/slurmd.c b/slurm-18.08.3/src/slurmd/slurmd/slurmd.c
|
|
index aa35f8a..b2feaf9 100644
|
|
--- a/src/slurmd/slurmd/slurmd.c
|
|
+++ b/src/slurmd/slurmd/slurmd.c
|
|
@@ -215,7 +215,7 @@ static void _wait_for_all_threads(int secs);
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
- int i, pidfd;
|
|
+ int i, pidfd, pipefd;
|
|
int blocked_signals[] = {SIGPIPE, 0};
|
|
int cc;
|
|
char *oom_value;
|
|
@@ -300,7 +300,8 @@ main (int argc, char **argv)
|
|
* Become a daemon if desired.
|
|
*/
|
|
if (conf->daemonize) {
|
|
- if (xdaemon())
|
|
+ pipefd = xdaemon_init();
|
|
+ if (pipefd == -1)
|
|
error("Couldn't daemonize slurmd: %m");
|
|
}
|
|
test_core_limit();
|
|
@@ -356,6 +357,9 @@ main (int argc, char **argv)
|
|
|
|
conf->pid = getpid();
|
|
pidfd = create_pidfile(conf->pidfile, 0);
|
|
+ if (conf->daemonize) {
|
|
+ xdaemon_finish(pipefd);
|
|
+ }
|
|
|
|
rfc2822_timestamp(time_stamp, sizeof(time_stamp));
|
|
info("%s started on %s", slurm_prog_name, time_stamp);
|