1. 15 Dec, 2015 2 commits
  2. 14 Dec, 2015 3 commits
    • Morris Jette's avatar
      Decrease scancel parallelism · 53c0078c
      Morris Jette authored
      Decrease parallelism in job cancel request to prevent denial of service
          when cancelling huge numbers of jobs.
      bug 2256
      53c0078c
    • Morris Jette's avatar
      Prevent gang scheduling with preemption configured · 44f491b8
      Morris Jette authored
      Prevent triggering gang scheduling within a partition if configured with
          PreemptType=partition_prio and PreemptMode=suspend,gang.
      The essence of this fix is to change a "<=" to "<" in cons_res/job_test.c:
      -               if ((p_ptr->part_ptr->priority <= jp_ptr->part_ptr->priority) &&
      +               if ((p_ptr->part_ptr->priority < jp_ptr->part_ptr->priority) &&
      but logic was also added to insure that a partition configuration with
      PreemptMode did not override PreemptType != partition_prio.
      bug 2232
      44f491b8
    • David Bigagli's avatar
      Update the slurm.conf man page. · 71c4429a
      David Bigagli authored
      71c4429a
  3. 11 Dec, 2015 8 commits
  4. 10 Dec, 2015 7 commits
    • Danny Auble's avatar
      Rewrite of cb2d3ec6, turns out the previous patch would break test3.11 · a0018643
      Danny Auble authored
      The problem comes from situations where a node range is given, leaving the
      task count at NO_VAL is the desired behavior in this case.
      a0018643
    • Danny Auble's avatar
      sbatch/salloc - Move nodelist logic before the time min_nodes is used · f8cd635e
      Danny Auble authored
      so we can set it correctly before tasks are set.
      f8cd635e
    • Tim Wickberg's avatar
    • Danny Auble's avatar
    • Tim Wickberg's avatar
      Remove unneeded A1 from the grep flag. This flag would randomly cause · c1413861
      Tim Wickberg authored
      messages like
      FAILURE: 1 scontrol show assoc_mgr did not show correct information (6 != 5).
      
      to happen erroneously.
      c1413861
    • David Bigagli's avatar
    • Tim Wickberg's avatar
      Various CLANG fixes. · 0d18a8ad
      Tim Wickberg authored
      The error messages associated with these are:
      
      /home/tim/slurm/src/common/callerid.c:337:21: warning: address of array 'entryp->d_name' will always evaluate to 'true' [-Wpointer-bool-conversion]
                      else if (!entryp->d_name)
                               ~~~~~~~~~^~~~~~
      1 warning generated.
      /home/tim/slurm/src/common/gres.c:831:19: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
                      if ((tmp_uint64 < 0) || (tmp_uint64 >= NO_VAL)) {
                           ~~~~~~~~~~ ^ ~
      1 warning generated.
      /home/tim/slurm/src/slurmctld/node_mgr.c:1684:26: warning: if statement has empty body [-Wempty-body]
                              if (first_new == NULL);
                                                    ^
      /home/tim/slurm/src/slurmctld/node_mgr.c:1684:26: note: put the semicolon on a separate line to silence this warning
      /home/tim/slurm/src/slurmctld/node_mgr.c:1756:26: warning: if statement has empty body [-Wempty-body]
                              if (first_new == NULL);
                                                    ^
      /home/tim/slurm/src/slurmctld/node_mgr.c:1756:26: note: put the semicolon on a separate line to silence this warning
      /home/tim/slurm/src/slurmctld/node_mgr.c:1830:26: warning: if statement has empty body [-Wempty-body]
                              if (first_new == NULL);
                                                    ^
      /home/tim/slurm/src/slurmctld/node_mgr.c:1830:26: note: put the semicolon on a separate line to silence this warning
      /home/tim/slurm/src/plugins/switch/generic/switch_generic.c:837:27: warning: address of array 'if_rec->ifa_addr->sa_data' will always evaluate to 'true' [-Wpointer-bool-conversion]
                              if (!if_rec->ifa_addr->sa_data)
                                  ~~~~~~~~~~~~~~~~~~~^~~~~~~
      0d18a8ad
  5. 09 Dec, 2015 11 commits
  6. 08 Dec, 2015 6 commits
  7. 07 Dec, 2015 3 commits