[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4e43e5b3f7fc by Benjamin Peterson in branch '2.7': mmap obmalloc arenas so that they may be immediately returned to the system when unused (closes #20494) http://hg.python.org/cpython/rev/4e43e5b3f7fc -- nosy: +python-dev resolution: -> fi

[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-03 Thread Benjamin Yolken
Changes by Benjamin Yolken : Removed file: http://bugs.python.org/file33883/memory_fix_updated.patch ___ Python tracker ___ ___ Python-bugs-li

[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-03 Thread Benjamin Yolken
Benjamin Yolken added the comment: Ahh, didn't see the "better resolution" patch later in the issue. I've updated the Python 2.7 patch here accordingly. -- Added file: http://bugs.python.org/file33894/memory_fix_updated2.patch ___ Python tracker

[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-03 Thread Benjamin Yolken
Changes by Benjamin Yolken : Removed file: http://bugs.python.org/file33881/memory_fix.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-03 Thread Benjamin Peterson
Benjamin Peterson added the comment: It seems you actually want the second patch on that issue not the first. -- nosy: +benjamin.peterson ___ Python tracker ___ _

[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-02 Thread Benjamin Yolken
Benjamin Yolken added the comment: Attaching an updated version of the patch generated with autoconf 2.69 instead of 2.68. -- Added file: http://bugs.python.org/file33883/memory_fix_updated.patch ___ Python tracker

[issue20494] Backport of http://bugs.python.org/issue11849 to Python 2.7 (Make it more likely for the system allocator to release free()d memory arenas on glibc-based systems).

2014-02-02 Thread Benjamin Yolken
New submission from Benjamin Yolken: We have found that http://bugs.python.org/issue11849 affects a number of our Python 2.7 systems in production. I took the changes in http://hg.python.org/cpython/rev/f8a697bc3ca8 and backported them to the head of the python 2.7 cpython hg branch. I have ve