Merge remote-tracking branch 'origin/dmw'

* origin/dmw:
  docs: update Changelog; closes #557.
  issue #557: support correct cpu_set_t size
pull/564/head
David Wilson 5 years ago
commit 7ffed6f6dc

@ -79,6 +79,7 @@ import multiprocessing
import os
import struct
import mitogen.core
import mitogen.parent
@ -246,8 +247,19 @@ class FixedPolicy(Policy):
class LinuxPolicy(FixedPolicy):
def _mask_to_bytes(self, mask):
"""
Convert the (type long) mask to a cpu_set_t.
"""
chunks = []
shiftmask = (2 ** 64) - 1
for x in range(16):
chunks.append(struct.pack('<Q', mask & shiftmask))
mask >>= 64
return mitogen.core.b('').join(chunks)
def _set_cpu_mask(self, mask):
s = struct.pack('L', mask)
s = self._mask_to_bytes(mask)
_sched_setaffinity(os.getpid(), len(s), s)

@ -24,7 +24,16 @@ To avail of fixes in an unreleased version, please download a ZIP file
Fixes
~~~~~
*(none yet)*
* `#557 <https://github.com/dw/mitogen/issues/557>`_: fix a crash when running
on machines with high CPU counts.
Thanks!
~~~~~~~
Mitogen would not be possible without the support of users. A huge thanks for
bug reports, testing, features and fixes in this release contributed by
`Orion Poplawski <https://github.com/opoplawski>`_.
v0.2.6 (2019-03-06)

@ -211,5 +211,16 @@ class LinuxPolicyTest(testlib.TestCase):
tf.close()
class MockLinuxPolicyTest(testlib.TestCase):
klass = ansible_mitogen.affinity.LinuxPolicy
# Test struct.pack() in _set_cpu_mask().
def test_high_cpus(self):
policy = self.klass(cpu_count=4096)
for x in range(1, 4096, 32):
policy.assign_subprocess()
if __name__ == '__main__':
unittest2.main()

Loading…
Cancel
Save