1. 27 May, 2016 9 commits
  2. 26 May, 2016 5 commits
  3. 25 May, 2016 4 commits
  4. 24 May, 2016 13 commits
  5. 23 May, 2016 1 commit
    • Nicolas Joly's avatar
      Fix scancel(1) uninitialized condition variable · 370e828e
      Nicolas Joly authored
      Still testing 16.05 on my NetBSD/amd64 workstation ...
      Just encountered a crash with scancel(1).
      njoly@lanfeust [~]> sbatch --wrap "sleep 3600"
      Submitted batch job 4680
      njoly@lanfeust [~]> scancel 4680
      scancel: Error detected by libpthread: Invalid condition variable.
      Detected by file "/local/src/NetBSD/src/lib/libpthread/pthread_cond.c", line 140, function "pthread_cond_timedwait".
      See pthread(3) for information.
      zsh: abort (core dumped)  scancel 4680
      Checking the code show indeed that pthread_cond_wait() call from scancel.c:_signal_job_by_str() use an uninitialised condition variable "num_active_threads_cond"
      The attached patch, which add the missing pthread_cond_init() seems to fix it.
      bug 2753
      370e828e
  6. 20 May, 2016 1 commit
  7. 19 May, 2016 5 commits
  8. 18 May, 2016 2 commits
    • Danny Auble's avatar
      MYSQL - Fix order of operations issue where if the database is locked up · d378b297
      Danny Auble authored
      and the slurmctld doesn't wait long enough for the response it would give
      up leaving the connection open and create a situation where the next message
      sent could receive the response of the first one.
      
      Bug 2739
      d378b297
    • Morris Jette's avatar
      Fix step cpus_per_task calculation · 5b4d2587
      Morris Jette authored
      Correct logic that calculates a step's cpus_per_task allocation
      on a heterogenous job allocation. Mixing a KNL with a Xeon resulted
      in a count that was between the CPU count on the two node types
      and invalid on the node with smaller CPU count (e.g. 272 CPUs on
      KNL, 8 on Xeon, and 2 tasks, cpus_per_task = 140).
      5b4d2587