1. 21 Jan, 2016 3 commits
  2. 20 Jan, 2016 10 commits
  3. 19 Jan, 2016 3 commits
    • Morris Jette's avatar
      Improve select/cons_res logging · 82f61b0d
      Morris Jette authored
      Log the length of bitmaps in addition to the bits set.
      Also increase the string length used for logging.
      82f61b0d
    • Morris Jette's avatar
      Fix for socket allocations and specialized cores · a260397a
      Morris Jette authored
      Previous logic would prevent allocation of sockets to a job unless the
      entire socket was available. If there were any specialized cores, the
      socket was treated as being not available and unusable. For example,
      if a node had 2 sockets, then a job requesting 2 specialized cores
      would reserve one core on each of the two sockets and render the job
      not runnable.
      a260397a
    • Morris Jette's avatar
      Remove redundant sinfo logic · 5e08b4d1
      Morris Jette authored
      There was logic in sinfo's print state function that determined
      if the state was MIXED. This logic was duplicated logic from the
      _query_server() function in sinfo.c and has been removed. Also
      note the logic was already gone from the "short state" print
      function (I noticed the discrepeancy in the print functions,
      but discovered they both printed the correct state information).
      5e08b4d1
  4. 18 Jan, 2016 2 commits
  5. 17 Jan, 2016 1 commit
  6. 16 Jan, 2016 2 commits
  7. 15 Jan, 2016 13 commits
  8. 14 Jan, 2016 6 commits
    • Morris Jette's avatar
      Merge branch 'slurm-14.11' into slurm-15.08 · c17396d7
      Morris Jette authored
      c17396d7
    • Morris Jette's avatar
      fix AuthInfo with alternate munge socket location · f3d54f99
      Morris Jette authored
      Fix for configuration of "AuthType=munge" and "AuthInfo=socket=..." with
          alternate munge socket path.
      bug 2348
      f3d54f99
    • Morris Jette's avatar
      Fix for Partition access control · fc1a68af
      Morris Jette authored
      Previously if partition limits enforcement was not configured,
        then a job submitted to a partition it could not access (say
        due to AllowGroups, AllowUsers, etc.) would not be rejected,
        but would be allocated resources and run. This bug was
        introduced in commit edf3880c
      fc1a68af
    • Morris Jette's avatar
      Fix for leak in gid cache logic · 254fa751
      Morris Jette authored
      254fa751
    • Morris Jette's avatar
      Cosmetic changes to gid cache work · a6daf947
      Morris Jette authored
      a6daf947
    • Janne Blomqvist's avatar
      Rework group caching to work better in environments with enumeration disabled. · 48a4cdf8
      Janne Blomqvist authored
      The initgroups()/getgrouplist() caching in slurmd is changed to not require enumeration, instead individual entries are cached when first needed. This cache is always enabled, thus the CacheGroups configuration setting has been removed. The time that each cache entry is considered valid is determined by the GroupUpdateTime configuration parameter. scontrol reconfig will purge the cache. The default value for the GroupUpdateForce configuration parameter has changed, as systems where /etc/group contains all the groups instead of some external system like NIS, LDAP are nowadays probably the exception rather than the rule.
      
      For slurmctld, the group cache still uses enumeration, but this is needed only to take care of special situations like multiple groups with the same GID. With enumeration disabled, group caching still works otherwise. validate_groups() does a little more optional work in order to handle the case where the user primary group is in the AllowGroups list, but getgrnam_r() does not return that user as a group member.
      
      bug 1629
      48a4cdf8