1. 25 Jan, 2017 6 commits
  2. 24 Jan, 2017 3 commits
  3. 23 Jan, 2017 9 commits
  4. 21 Jan, 2017 2 commits
  5. 20 Jan, 2017 1 commit
    • Brian Christiansen's avatar
      Fix mutlicluster options to work with newer ctlds · 8b430b6a
      Brian Christiansen authored
      If a lower version client would try to communicate with a higher version
      controller the dbd would return the controller's version and the client
      would use that version to talk to the controller. When the controller
      would respond, the client wouldn't know how to unpack the higher version
      msg.
      8b430b6a
  6. 19 Jan, 2017 4 commits
  7. 18 Jan, 2017 4 commits
  8. 17 Jan, 2017 5 commits
  9. 15 Jan, 2017 1 commit
  10. 12 Jan, 2017 4 commits
  11. 11 Jan, 2017 1 commit
    • Danny Auble's avatar
      CRAY - Fix deadlock issue when updating accounting in the slurmctld and · 69567910
      Danny Auble authored
      scheduling a Datawarp job.
      
      The assoc_mgr lock needs to happen before the bb_state.bb_mutex.  One place
      this could cause deadlock is from src/slurmctld/controller.c
      _accounting_cluster_ready() which calls clusteracct_storage_g_cluster_tres
      which inturn calls bb_g_job_set_tres_cnt which calls bb_p_job_set_tres_cnt
      which will lock the bb_muxtex after the assoc_mgr is already locked.
      
      Bug 3389
      69567910