From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 84188 invoked by alias); 21 Nov 2016 19:43:48 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 84171 invoked by uid 89); 21 Nov 2016 19:43:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=H*r:8.14.7 X-HELO: mx1.redhat.com From: DJ Delorie To: Steve Vormwald Cc: libc-alpha@sourceware.org Subject: Re: [PATCH] malloc: Deprecate hook variables, __default_morecore, References: <915065cd-079b-0f7b-eebf-7ca835ca4030@redhat.com> Date: Mon, 21 Nov 2016 19:43:00 -0000 In-Reply-To: (Steve Vormwald's message of "Fri, 18 Nov 2016 17:29:28 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SW-Source: 2016-11/txt/msg00749.txt.bz2 Steve Vormwald writes: > The usual culprit is something "caching" small (<128byte) allocations for > future reuse rather than freeing them when they become unused, which Have you tried disabling fastbins? I.e. mallopt(M_MXFAST, 0) ?