1. 28 Jan, 2014 1 commit
  2. 24 Jan, 2014 3 commits
  3. 23 Jan, 2014 2 commits
  4. 22 Jan, 2014 1 commit
  5. 21 Jan, 2014 2 commits
  6. 20 Jan, 2014 1 commit
  7. 18 Jan, 2014 1 commit
  8. 16 Jan, 2014 2 commits
  9. 15 Jan, 2014 1 commit
  10. 13 Jan, 2014 4 commits
  11. 08 Jan, 2014 4 commits
  12. 07 Jan, 2014 4 commits
  13. 06 Jan, 2014 4 commits
  14. 27 Dec, 2013 2 commits
    • Filip Skalski's avatar
      Fix sched/backfill bug that could starve jobs · 2bae8bd6
      Filip Skalski authored
      Hello,
      
      I think I found another bug in the code (I'm using 2.6.3 but I checked the 2.6.5 and 14.03 versions and it's the same there).
      
      In file sched/backfill/backfill.c:
      
      1)
      _add_reservation function, from lines 1172:
      
      if (placed == true) {
              j = node_space[j].next;
              if (j && (end_reserve < node_space[j].end_time)) {
                      /* insert end entry record */
                      i = *node_space_recs;
                      node_space[i].begin_time = end_reserve;
                      node_space[i].end_time = node_space[j].end_time;
                      node_space[j].end_time = end_reserve;
                      node_space[i].avail_bitmap =
                              bit_copy(node_space[j].avail_bitmap);
                      node_space[i].next = node_space[j].next;
                      node_space[j].next = i;
                      (*node_space_recs)++;
              }
              break;
      }
      I draw a picture with `node_space` state after 2 iterations (see attachment).
      
      In case where the new reservation i...
      2bae8bd6
    • Morris Jette's avatar
      Minor sbatch man page clarification · f8cbf68b
      Morris Jette authored
      f8cbf68b
  15. 25 Dec, 2013 1 commit
  16. 23 Dec, 2013 3 commits
  17. 21 Dec, 2013 2 commits
  18. 20 Dec, 2013 2 commits