From: Florian Weimer Date: Tue, 21 Jun 2016 19:29:21 +0000 (+0200) Subject: malloc: Avoid premature fallback to mmap [BZ #20284] X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f97c0cafa1d661fe2ffa946c215f613beb32cd6;p=thirdparty%2Fglibc.git malloc: Avoid premature fallback to mmap [BZ #20284] Before this change, the while loop in reused_arena which avoids returning a corrupt arena would never execute its body if the selected arena were not corrupt. As a result, result == begin after the loop, and the function returns NULL, triggering fallback to mmap. (cherry picked from commit a3b473373ee43a292f5ec68a7fda6b9cfb26a9b0) (cherry picked from commit a69d26143b80cb1927481509279577c57bc22ba4) --- diff --git a/malloc/arena.c b/malloc/arena.c index 0e5cc0f54d8..232b6a29600 100644 --- a/malloc/arena.c +++ b/malloc/arena.c @@ -795,14 +795,12 @@ reused_arena (mstate avoid_arena) { result = result->next; if (result == begin) - break; + /* We looped around the arena list. We could not find any + arena that was either not corrupted or not the one we + wanted to avoid. */ + return NULL; } - /* We could not find any arena that was either not corrupted or not the one - we wanted to avoid. */ - if (result == begin || result == avoid_arena) - return NULL; - /* No arena available without contention. Wait for the next in line. */ LIBC_PROBE (memory_arena_reuse_wait, 3, &result->mutex, result, avoid_arena); (void) mutex_lock (&result->mutex);