Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
e93a3ee7
Commit
e93a3ee7
authored
22 years ago
by
tewk
Browse files
Options
Downloads
Patches
Plain Diff
Added daemonize to slurmd
parent
a2f72d71
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/common/slurm_errno.c
+14
-0
14 additions, 0 deletions
src/common/slurm_errno.c
src/slurmd/Makefile.am
+1
-0
1 addition, 0 deletions
src/slurmd/Makefile.am
src/slurmd/nbio.c
+8
-1
8 additions, 1 deletion
src/slurmd/nbio.c
src/slurmd/slurmd.c
+18
-7
18 additions, 7 deletions
src/slurmd/slurmd.c
with
41 additions
and
8 deletions
src/common/slurm_errno.c
+
14
−
0
View file @
e93a3ee7
...
...
@@ -110,7 +110,21 @@ g" },
{
ESLURMD_OPENSSL_ERROR
,
"Openssl error"
},
{
ESLURMD_NO_AVAILABLE_JOB_STEP_SLOTS_IN_SHMEM
,
"No available job step slots in shmem"
},
{
ESLURMD_NO_AVAILABLE_TASK_SLOTS_IN_SHMEM
,
"No available task slots in shmem"
},
{
ESLURMD_INVALID_JOB_CREDENTIAL
,
"Invalid job credential"
},
{
ESLURMD_NODE_NAME_NOT_PRESENT_IN_CREDENTIAL
,
"This slurmd node name is not int job credential"
},
{
ESLURMD_CREDENTIAL_EXPIRED
,
"Timestamp of this job credential has expired"
},
{
ESLURMD_CREDENTIAL_REVOKED
,
"This job credential has been revoked by slurmd"
},
{
ESLURMD_CREDENTIAL_TO_EXPIRE_DOESNOT_EXIST
,
"Credential requested to expire doesn't exist"
},
{
ESLURMD_ERROR_SIGNING_CREDENTIAL
,
"SSL crypto error signing job credential"
},
{
ESLURMD_ERROR_FINDING_JOB_STEP_IN_SHMEM
,
"Job step not found in shmem"
},
{
ESLURMD_CIRBUF_POINTER_0
,
"Circular read or write buffer size is 0/ not good"
},
{
ESLURMD_PIPE_DISCONNECT
,
"Task has closed or dropped its stdio pipes"
},
{
ESLURMD_EOF_ON_SOCKET
,
"Socket returned EOF, it was closed"
},
{
ESLURMD_SOCKET_DISCONNECT
,
"Socket disconnected"
},
{
ESLURMD_UNKNOWN_SOCKET_ERROR
,
"Unknown socket error / this is bad"
},
/*
{ , "" },
*/
/* socket specific SLURM communications error */
{
SLURM_PROTOCOL_SOCKET_IMPL_ZERO_RECV_LENGTH
,
"Received zero length message"
},
{
SLURM_PROTOCOL_SOCKET_IMPL_NEGATIVE_RECV_LENGTH
,
"Received message length < 0"
},
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/Makefile.am
+
1
−
0
View file @
e93a3ee7
...
...
@@ -13,6 +13,7 @@ sbin_PROGRAMS = slurmd
noinst_LIBRARIES
=
libelan_interconnect.a libno_interconnect.a libforked_io.a libthreaded_io.a libnbio.a
LDADD
=
$(
top_srcdir
)
/src/common/libcommon.la
\
$(
top_srcdir
)
/src/common/libdaemonize.la
\
$(
SSL_LIBS
)
libno_interconnect.a
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/nbio.c
+
8
−
1
View file @
e93a3ee7
...
...
@@ -22,6 +22,8 @@
#include
<src/slurmd/io.h>
#include
<src/slurmd/pipes.h>
#define RECONNECT_TIMEOUT_SECONDS 1
#define RECONNECT_TIMEOUT_MICROSECONDS 0
typedef
enum
{
IN_OUT_FD
,
...
...
@@ -88,7 +90,12 @@ void * do_nbio ( void * arg )
while
(
true
)
{
int
rc
=
slurm_select
(
nbio_attr
.
max_fd
,
&
nbio_attr
.
init_set
[
RD_SET
]
,
&
nbio_attr
.
init_set
[
WR_SET
]
,
&
nbio_attr
.
init_set
[
ER_SET
]
,
NULL
)
;
struct
timeval
select_timer
;
int
rc
;
select_timer
.
tv_sec
=
RECONNECT_TIMEOUT_SECONDS
;
select_timer
.
tv_usec
=
RECONNECT_TIMEOUT_MICROSECONDS
;
rc
=
slurm_select
(
nbio_attr
.
max_fd
,
&
nbio_attr
.
init_set
[
RD_SET
]
,
&
nbio_attr
.
init_set
[
WR_SET
]
,
&
nbio_attr
.
init_set
[
ER_SET
]
,
NULL
)
;
nbio_set_init
(
&
nbio_attr
,
nbio_attr
.
next_set
)
;
...
...
This diff is collapsed.
Click to expand it.
src/slurmd/slurmd.c
+
18
−
7
View file @
e93a3ee7
...
...
@@ -61,6 +61,7 @@ typedef struct slurmd_config
{
log_options_t
log_opts
;
char
*
slurm_conf
;
int
daemonize
;
}
slurmd_config_t
;
typedef
struct
connection_arg
...
...
@@ -107,11 +108,17 @@ int main (int argc, char *argv[])
init_time
=
time
(
NULL
);
slurmd_conf
.
log_opts
=
log_opts_def
;
slurmd_conf
.
daemonize
=
false
;
parse_commandline_args
(
argc
,
argv
,
&
slurmd_conf
)
;
log_init
(
argv
[
0
],
slurmd_conf
.
log_opts
,
SYSLOG_FACILITY_DAEMON
,
NULL
);
if
(
slurmd_conf
.
daemonize
==
true
)
{
daemon
(
false
,
true
)
;
}
/*
if ( ( error_code = init_slurm_conf () ) )
fatal ("slurmd: init_slurm_conf error %d", error_code);
...
...
@@ -611,6 +618,7 @@ void usage (char *prog_name)
printf
(
"%s [OPTIONS]
\n
"
,
prog_name
);
printf
(
" -e <errlev> Set stderr logging to the specified level
\n
"
);
printf
(
" -f <file> Use specified configuration file name
\n
"
);
printf
(
" -d daemonize
\n
"
);
printf
(
" -h Print a help message describing usage
\n
"
);
printf
(
" -l <errlev> Set logfile logging to the specified level
\n
"
);
printf
(
" -s <errlev> Set syslog logging to the specified level
\n
"
);
...
...
@@ -630,16 +638,16 @@ int parse_commandline_args ( int argc , char ** argv , slurmd_config_t * slurmd_
int
option_index
=
0
;
static
struct
option
long_options
[]
=
{
{
"
add
"
,
1
,
0
,
0
},
{
"
append
"
,
0
,
0
,
0
},
{
"d
elete"
,
1
,
0
,
0
},
{
"
verbos
e"
,
0
,
0
,
0
},
{
"
create
"
,
1
,
0
,
'
c
'
},
{
"
file
"
,
1
,
0
,
0
},
{
"
error_level
"
,
1
,
0
,
'e'
},
{
"
help
"
,
0
,
0
,
'h'
},
{
"d
aemonize"
,
0
,
0
,
'd'
},
{
"
config_fil
e"
,
1
,
0
,
'f'
},
{
"
log_level
"
,
1
,
0
,
'
l
'
},
{
"
syslog_level
"
,
1
,
0
,
's'
},
{
0
,
0
,
0
,
0
}
};
c
=
getopt_long
(
argc
,
argv
,
"e:hf:l:s:"
,
long_options
,
&
option_index
);
c
=
getopt_long
(
argc
,
argv
,
"
d
e:hf:l:s:"
,
long_options
,
&
option_index
);
if
(
c
==
-
1
)
break
;
...
...
@@ -656,6 +664,9 @@ int parse_commandline_args ( int argc , char ** argv , slurmd_config_t * slurmd_
}
slurmd_config
->
log_opts
.
stderr_level
=
errlev
;
break
;
case
'd'
:
slurmd_config
->
daemonize
=
true
;
break
;
case
'h'
:
usage
(
argv
[
0
]);
exit
(
0
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment