From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id QfmUEExhzl+JSgAAWB0awg (envelope-from ) for ; Mon, 07 Dec 2020 12:07:24 -0500 Received: by simark.ca (Postfix, from userid 112) id 392771F071; Mon, 7 Dec 2020 12:07:24 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_NONE,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.2 Received: from sourceware.org (unknown [8.43.85.97]) (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 simark.ca (Postfix) with ESMTPS id DFD301EF4B for ; Mon, 7 Dec 2020 12:07:23 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 01355389682C; Mon, 7 Dec 2020 17:07:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 01355389682C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1607360843; bh=zoL+VPJ5j/S2f8Hd3cjePIvCPcl6+EE4/NgmScSXOW0=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=UytCI5gH/PxqdLHR1yj0MGQbLGsknBeLVwTMIJSWXegsRZ+wSwBEvtwaRISEX9T4U QVvAmMR3WI5N0ptcFu0O/KVmYAlR5s66ODJbj5khoVOcHUGmLSVwfyiSypSRzniW6N qsH+yF3otugVDsAeevXS9UV70BL+ldUTZQqPiQl0= Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 0508E389682C for ; Mon, 7 Dec 2020 17:07:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0508E389682C Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 0B7H7C8Y013101 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Mon, 7 Dec 2020 12:07:19 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 0B7H7C8Y013101 Received: from [10.0.0.11] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 80A0F1EF4B; Mon, 7 Dec 2020 12:07:12 -0500 (EST) Subject: Re: [PATCH] gdb: print size of downloaded debuginfod binary To: =?UTF-8?Q?Martin_Li=c5=a1ka?= , gdb-patches@sourceware.org References: <6ad82f30-0ca3-8b19-2907-d71f0dfecafe@suse.cz> Message-ID: Date: Mon, 7 Dec 2020 12:07:12 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.3 MIME-Version: 1.0 In-Reply-To: <6ad82f30-0ca3-8b19-2907-d71f0dfecafe@suse.cz> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Mon, 7 Dec 2020 17:07:14 +0000 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 2020-12-07 6:43 a.m., Martin Liška wrote: > With the patch, one can see now: > > Reading symbols from /usr/bin/gcc... > Downloading 2.69 MiB separate debug info for /usr/bin/gcc... > Downloading 1.00 MiB separate debug info for /lib64/ld-linux-x86-64.so.2... > Downloading 10.72 MiB separate debug info for /lib64/libc.so.6... > ... I think that's a good idea. Given that we don't have a progress bar (yet), this gives clue to the user about why it might take some time. Let's see if others have other opinions about this. If nothing comes for by next week, you can go ahead and merge it. Simon