From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id 9C9DC3858419 for ; Mon, 18 Mar 2024 20:24:32 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 9C9DC3858419 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 9C9DC3858419 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=170.10.129.124 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1710793474; cv=none; b=M1EIHJva+dzsEc8fNB9/dVAAC6hzCpWy2+QbeZ6n8pkq00JPneUvr7oyzV4p+7E+HPHprHYZsiXw2pQRo2LeesvUWxg0m/r2w13aam3NBMYMKGVBmU+4VjkzYwNh5jWI2kDDLBoCuTIPdHDekSy7OvyKD696c9yh/NQE4koRlpM= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1710793474; c=relaxed/simple; bh=oBaEWAu1tKY/zIjztS/H2xwCXzOzFlUqFT56dCi5sBs=; h=DKIM-Signature:Date:From:To:Subject:Message-ID:MIME-Version; b=g8s7ZVUjQy/8SfDK1Qmg62r28jR+k9Q8N+/DUFxa1QteswqMbYBabIXyUUVH9bf+7ogh9UBfl5tgxlw1KU/Y8zb/LjuwWNbGa0dLrJDJkILgvdcx8AEBjnWdmjN7jijK4z2pYLPzP/Paea+0yLU2iOPWavldQXdBbAXPUSMK/aM= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1710793472; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=GtLMC5TD5uAxuLAJj7SLKdD296VVDw9D2UDptIMNcV0=; b=XUMEE4QpyUgjwZhFPDWyNXZej1jCcgnu65yyJ6XaIgetb6xnck2Jq19u5hWqWlMhZ25c1G U1bgS+mCbbfPTnqwZC5qrpuLHjRg/a0SR6hzfJY4iz/9MPnSXKHJEj1QM/CAiUNg6PER1C xEM25vRdwKP52qMG5gibCqbK5m96qcY= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-653-5gI7skpqPx2O_aBIR06qCg-1; Mon, 18 Mar 2024 16:24:30 -0400 X-MC-Unique: 5gI7skpqPx2O_aBIR06qCg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id E4784800264 for ; Mon, 18 Mar 2024 20:24:29 +0000 (UTC) Received: from redhat.com (unknown [10.22.16.13]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D523A2024517; Mon, 18 Mar 2024 20:24:29 +0000 (UTC) Received: from fche by redhat.com with local (Exim 4.94.2) (envelope-from ) id 1rmJWy-0006xw-Tg; Mon, 18 Mar 2024 16:24:24 -0400 Date: Mon, 18 Mar 2024 16:24:24 -0400 From: "Frank Ch. Eigler" To: Di Chen Cc: elfutils-devel@sourceware.org Subject: Re: [PATCH] debuginfod.cxx: periodically malloc_trim() Message-ID: <20240318202424.GC9577@redhat.com> References: MIME-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.12.0 (2019-05-25) X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_NONE,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hi - > From: Di Chen > Date: Mon, 18 Mar 2024 09:06:19 +0800 > Subject: [PATCH] debuginfod.cxx: periodically malloc_trim() > > Add malloc_trim() for releasing memory which is allocated for temporary > purposes, e.g. answering queries, adding data to the database during > scans. > > https://sourceware.org/bugzilla/show_bug.cgi?id=31103 > > Signed-off-by: Di Chen > [...] Thanks, will merge this with a bit of configury added. - FChE