1. 17 Jul, 2018 2 commits
    • Felip Moll's avatar
      Fix for handle directory names within '\' in it · a9a4a7da
      Felip Moll authored
      Previously, slashes '\' in job->cwd were always expanded regardless of they
      were part of the name of a directory or not.
      
      Bug 4859
      a9a4a7da
    • Felip Moll's avatar
      Improve escaping paths on user commands · 9c58150f
      Felip Moll authored
      When dealing with special characters like %A, %u, %s and so on and escaping it
      on the command line, problems arises when one have directories with multiple
      slashes in their names. This patch fixes this situation removing only one
      slash on each pair of slashes just as normal escaping works i.e. in bash.
      
      Bug 4859
      9c58150f
  2. 12 Jul, 2018 3 commits
  3. 09 Jul, 2018 1 commit
  4. 06 Jul, 2018 1 commit
    • Marshall Garey's avatar
      Fix leaking freezer cgroups. · 7f9c4f73
      Marshall Garey authored
      Continuation of 923c9b37.
      
      There is a delay in the cgroup system when moving a PID from one cgroup
      to another. It is usually short, but if we don't wait for the PID to
      move before removing cgroup directories the PID previously belonged to,
      we could leak cgroups. This was previously fixed in the cpuset and
      devices subsystems. This uses the same logic to fix the freezer
      subsystem.
      
      Bug 5082.
      7f9c4f73
  5. 05 Jul, 2018 1 commit
  6. 04 Jul, 2018 2 commits
  7. 03 Jul, 2018 2 commits
  8. 26 Jun, 2018 4 commits
  9. 25 Jun, 2018 1 commit
  10. 22 Jun, 2018 2 commits
  11. 20 Jun, 2018 2 commits
  12. 19 Jun, 2018 3 commits
  13. 18 Jun, 2018 1 commit
  14. 15 Jun, 2018 2 commits
  15. 14 Jun, 2018 1 commit
  16. 13 Jun, 2018 1 commit
    • Tim Wickberg's avatar
      Remove AdminComment += syntax from 'scontrol update job'. · 1edd511f
      Tim Wickberg authored
      I do not see a use for this syntax, especially given that it appends
      an extra comma in between the two halves. Only allow the full string
      to change to put this in line with the Comment handling.
      
      Remove special handling of an identical AdminComment as well,
      since the end result is unchanged, and this avoids a potentially
      expensive xstrcmp call.
      
      Bug 5306.
      1edd511f
  17. 12 Jun, 2018 3 commits
  18. 10 Jun, 2018 1 commit
  19. 08 Jun, 2018 2 commits
  20. 07 Jun, 2018 2 commits
  21. 06 Jun, 2018 3 commits
    • Morris Jette's avatar
      Add SetExecHost flag for cray burst buffers · f3ace3e5
      Morris Jette authored
      burst_buffer.conf - Add SetExecHost flag to enable burst buffer access
          from the login node for interactive jobs.
      f3ace3e5
    • Alejandro Sanchez's avatar
      Alter slurm_mktime() function to set tm_isdst to -1. · d6db076a
      Alejandro Sanchez authored
      And remove the initialization before all the calls to the function.
      
      It is non-functional and the motivation is more a preventive thing
      so that if we ever use slurm_mktime() we know tm_isdst is consistently
      set to -1.
      
      Bug 5230.
      d6db076a
    • Brian Christiansen's avatar
      Don't allocate downed cloud nodes · be449407
      Brian Christiansen authored
      which were marked down due to ResumeTimeout.
      
      If a cloud node was marked down due to not responding by ResumeTimeout,
      the code inadvertently added the node back to the avail_node_bitmap --
      after being cleared by set_node_down_ptr(). The scheduler would then
      attempt to allocate the node again, which would cause a loop of hitting
      ResumeTimeout and allocating the downed node again.
      
      Bug 5264
      be449407