1. 19 Aug, 2019 1 commit
    • Broderick Gardner's avatar
      Fix unaccounted TRESRunMins usage from HetJobs · 1da9c5d0
      Broderick Gardner authored
      The implementation of priority_p_job_end in priority/multifactor
      expects the job state to be set to complete or completing in order to
      properly remove some job usage from the assoc and qos. This must be
      simulated by the pack job run check code, or the check-time usage is not
      removed.
      
      Bug 7284
      1da9c5d0
  2. 16 Aug, 2019 1 commit
  3. 15 Aug, 2019 1 commit
  4. 14 Aug, 2019 8 commits
  5. 13 Aug, 2019 2 commits
  6. 12 Aug, 2019 1 commit
    • Dominik Bartkiewicz's avatar
      Fix segfault in _update_job(). · f0eb0f25
      Dominik Bartkiewicz authored
      task_id_bitmap can be free'd through:
      	_update_job()
      	-> acct_policy_remove_job_submit()
      	-> acct_policy_handle_accrue_time()
      	-> job_array_post_sched()
      
      Bug 7537.
      f0eb0f25
  7. 09 Aug, 2019 1 commit
  8. 08 Aug, 2019 2 commits
  9. 06 Aug, 2019 3 commits
  10. 05 Aug, 2019 1 commit
  11. 01 Aug, 2019 2 commits
  12. 31 Jul, 2019 1 commit
  13. 29 Jul, 2019 2 commits
  14. 26 Jul, 2019 1 commit
  15. 25 Jul, 2019 1 commit
  16. 24 Jul, 2019 1 commit
  17. 23 Jul, 2019 8 commits
  18. 17 Jul, 2019 1 commit
  19. 16 Jul, 2019 2 commits
    • Tim Wickberg's avatar
      Remove stray __USE_GNU macro definitions. · 4886d3c4
      Tim Wickberg authored
      Causes build failures on Debian ia64 platform, and per the glibc docs this
      is an internal macro for them that should be getting set automatically
      as long as we've defined _GNU_SOURCE before including our first glibc
      header.
      
      Fix the task/affinity plugin code to define _GNU_SOURCE first, and not
      defer this to the affinity.h include (which may come after some glibc
      headers have been included, leading to issues finding the CPU_SETSIZE
      macro).
      
      Bug 7152.
      4886d3c4
    • Nate Rini's avatar
      Abort when plugin loading fails · 1b194a98
      Nate Rini authored
      If plugin load fails, then slurmd will SEGFAULT later while attempting
      to call one of the invalid function pointers. Instead, just abort during
      loading.
      
      Bug 7402.
      1b194a98