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
4f2f1a0f
Commit
4f2f1a0f
authored
22 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Reset config info on SIGHUP to slurmctld. Fix bug: called xfree instead of
free_bitmap
parent
e4e3e8f1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/slurmctld/controller.c
+2
-0
2 additions, 0 deletions
src/slurmctld/controller.c
src/slurmctld/node_mgr.c
+1
-1
1 addition, 1 deletion
src/slurmctld/node_mgr.c
with
3 additions
and
1 deletion
src/slurmctld/controller.c
+
2
−
0
View file @
4f2f1a0f
...
@@ -329,6 +329,8 @@ static void *_slurmctld_signal_hand(void *no_data)
...
@@ -329,6 +329,8 @@ static void *_slurmctld_signal_hand(void *no_data)
if
(
error_code
)
if
(
error_code
)
error
(
"read_slurm_conf error %d"
,
error
(
"read_slurm_conf error %d"
,
error_code
);
error_code
);
else
_update_logging
();
break
;
break
;
case
SIGABRT
:
/* abort */
case
SIGABRT
:
/* abort */
fatal
(
"SIGABRT received"
);
fatal
(
"SIGABRT received"
);
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/node_mgr.c
+
1
−
1
View file @
4f2f1a0f
...
@@ -675,7 +675,7 @@ static void _list_delete_config (void *config_entry)
...
@@ -675,7 +675,7 @@ static void _list_delete_config (void *config_entry)
config_record_point
=
(
struct
config_record
*
)
config_entry
;
config_record_point
=
(
struct
config_record
*
)
config_entry
;
FREE_NULL
(
config_record_point
->
feature
);
FREE_NULL
(
config_record_point
->
feature
);
FREE_NULL
(
config_record_point
->
nodes
);
FREE_NULL
(
config_record_point
->
nodes
);
FREE_NULL
(
config_record_point
->
node_bitmap
);
FREE_NULL
_BITMAP
(
config_record_point
->
node_bitmap
);
xfree
(
config_record_point
);
xfree
(
config_record_point
);
}
}
...
...
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