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 B24B4385800D for ; Tue, 6 Sep 2022 07:35:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B24B4385800D Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1662449713; 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=AYgx9mcSFBMuz6xpaO7VtCtf3UPmCUKXb9WTL8cPc6w=; b=gMPczYIpHlONkiZfNbMWgmiyt+Vqsw79H0B0mDss/EEBV1bOf1tSCbXZL72EdsnChePVCz 3qjyOFf4eQGtIzARKtvtB8GEolT+WvGmXZmMDM3uD9LqySsbGfOAXAoev+UyNLjvY55T8f muphUoyj0uLkGUpg3ZL8UJutgiVb2cE= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-493-tEbDTrdjPDemQHKuuMW3Nw-1; Tue, 06 Sep 2022 03:35:07 -0400 X-MC-Unique: tEbDTrdjPDemQHKuuMW3Nw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.rdu2.redhat.com [10.11.54.6]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 50619299E74E; Tue, 6 Sep 2022 07:35:07 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.192.109]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 794362166B26; Tue, 6 Sep 2022 07:35:06 +0000 (UTC) From: Florian Weimer To: Javier Pello Cc: libc-alpha@sourceware.org Subject: Re: [PATCH 0/4] elf: Fix hwcaps string size overestimation References: <20220905200652.d69204581d15c64647da5cd2@otheo.eu> Date: Tue, 06 Sep 2022 09:35:04 +0200 In-Reply-To: <20220905200652.d69204581d15c64647da5cd2@otheo.eu> (Javier Pello's message of "Mon, 5 Sep 2022 20:06:52 +0200") Message-ID: <87h71l9crb.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.78 on 10.11.54.6 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-5.5 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW,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: * Javier Pello: > Here is a series of patches related to the construction of the hwcaps > power set strings in function _dl_important_hwcaps in elf/dl-hwcaps.c. We deprecated this mechanism in glibc 2.33. I think it's time to remove it in glibc 2.37. Since you are evidently familiar with the code now, would like to implement the removal? Thanks, Florian