From: normalperson@... Date: 2018-08-01T00:44:04+00:00 Subject: [ruby-core:88242] [Ruby trunk Feature#14955] [PATCH] gc.c: use MADV_FREE to release most of the heap page body Issue #14955 has been reported by normalperson (Eric Wong). ---------------------------------------- Feature #14955: [PATCH] gc.c: use MADV_FREE to release most of the heap page body https://bugs.ruby-lang.org/issues/14955 * Author: normalperson (Eric Wong) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- gc.c: use MADV_FREE to release most the heap page body On x86 and x86-64 Linux and FreeBSD (at least), we can release most of the heap page body (12k of nearly 16k). This is better than causing malloc fragmentation with free(3) on memaligned areas. cf. https://sourceware.org/bugzilla/show_bug.cgi?id=14581 Note: memory is memory to madvise(2), regardless of whether it came from brk(2) or mmap(2); so we expect to be able to madvise any anonymous segments as long as they're page-aligned. Allocators configured to file-backed mappings will cause warnings when $VERBOSE is set. ---Files-------------------------------- 0001-gc.c-use-MADV_FREE-to-release-most-the-heap-page-bod.patch (5.78 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: