Skip to content
Snippets Groups Projects
Commit 8a74f649 authored by Moe Jette's avatar Moe Jette
Browse files
parents 037f4a21 443ff5fa
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,8 @@ documents those changes that are of interest to users and admins.
specific reservation.
-- Treat reservation with no nodes like one that starts later (let jobs of any
size get queued).
-- Fix bug in gang scheduling logic that would temporarily resume to many jobs
after a job completed.
* Changes in SLURM 2.2.0
========================
......
......@@ -687,7 +687,7 @@ static int _sort_partitions(void *part1, void *part2)
{
int prio1 = ((struct gs_part *) part1)->priority;
int prio2 = ((struct gs_part *) part2)->priority;
return prio1 - prio2;
return prio2 - prio1;
}
/* Scan the partition list. Add the given job as a "shadow" to every
......
......@@ -46,6 +46,10 @@
# include "config.h"
#endif
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#include <signal.h>
#include <stdlib.h>
#include <string.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment