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
e87c8d9c
Commit
e87c8d9c
authored
18 years ago
by
Christopher J. Morrone
Browse files
Options
Downloads
Patches
Plain Diff
svn merge -r8319:8332
https://eris/svn/slurm/branches/slurm-1.1
parent
fe05233c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS
+2
-0
2 additions, 0 deletions
NEWS
slurm.spec
+17
-0
17 additions, 0 deletions
slurm.spec
src/slurmctld/controller.c
+1
-1
1 addition, 1 deletion
src/slurmctld/controller.c
with
20 additions
and
1 deletion
NEWS
+
2
−
0
View file @
e87c8d9c
...
...
@@ -13,6 +13,8 @@ documents those changes that are of interest to users and admins.
-- Fix bug in jobcomp/filetxt plugin to report proper NodeCnt when a job
fails due to a node failure.
-- Fix Bluegene configure to work with the new 64bit libs.
-- Fix bug in controller that causes it to segfault when hit with a malformed
message.
* Changes in SLURM 1.1.1
========================
...
...
This diff is collapsed.
Click to expand it.
slurm.spec
+
17
−
0
View file @
e87c8d9c
...
...
@@ -82,6 +82,11 @@ Summary: SLURM interfaces to IBM AIX and Federation switch.
Group: System Environment/Base
Requires: slurm
%package proctrack-sgi-job
Summary: SLURM process tracking plugin for SGI job containers.
Group: System Environment/Base
Requires: slurm
%description
SLURM is an open source, fault-tolerant, and highly
scalable cluster management and job scheduling system for Linux clusters
...
...
@@ -113,6 +118,10 @@ SLURM switch plugin for Quadrics Elan3 or Elan4.
%description aix-federation
SLURM plugins for IBM AIX and Federation switch.
%description proctrack-sgi-job
SLURM process tracking plugin for SGI job containers.
(See http://oss.sgi.com/projects/pagg).
%prep
%setup -n %{name}-%{version}-%{release}
...
...
@@ -197,6 +206,11 @@ echo "%{_sbindir}/slurm_prolog" >> $LIST
echo "%{_sbindir}/sfree" >> $LIST
echo "%config %{_sysconfdir}/bluegene.conf.example" >> $LIST
LIST=./sgi-job.files
touch $LIST
test -f $RPM_BUILD_ROOT/%{_libdir}/slurm/proctrack_sgi_job.so &&
echo "%{_libdir}/slurm/proctrack_sgi_job.so" >> $LIST
#############################################################################
%clean
...
...
@@ -288,6 +302,9 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
#############################################################################
%files -f sgi-job.files proctrack-sgi-job
%defattr(-,root,root)
%pre
#if [ -x /etc/init.d/slurm ]; then
# if /etc/init.d/slurm status | grep -q running; then
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/controller.c
+
1
−
1
View file @
e87c8d9c
...
...
@@ -627,7 +627,7 @@ static void *_service_connection(void *arg)
/* set msg connection fd to accepted fd. This allows
* possibility for slurmd_req () to close accepted connection
*/
if
(
errno
<
0
)
{
if
(
errno
!=
SLURM_SUCCESS
)
{
if
(
errno
==
SLURM_PROTOCOL_VERSION_ERROR
)
{
slurm_send_rc_msg
(
msg
,
SLURM_PROTOCOL_VERSION_ERROR
);
}
else
...
...
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