From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by sourceware.org (Postfix) with ESMTPS id 2BC2E3858C52 for ; Tue, 27 Sep 2022 18:03:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2BC2E3858C52 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=otheo.eu Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=otheo.eu Received: (Authenticated sender: #01#@otheo.eu) by mail.gandi.net (Postfix) with ESMTPSA id 66C251C0004 for ; Tue, 27 Sep 2022 18:03:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=otheo.eu; s=gm1; t=1664301830; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fNm31dGEflySPKuGX/6pkOl0VAfeAdA+nEtar0MserI=; b=Yk5JFr93dpg50MM3YQdL23WsbmKoRz6riNOx4OSUvG2xLGgTOVpZOcngDkQCdDQmpuQOJm ulYFiUmRgY/mnfI+KffXFQ1yDxrKDHIBp4XkLh7VUZ4+9hxuJhVU7Vw3URJRvlOfdhaPHQ QHLMWpRORFqM0xKjUTpX7rkz7YxZagwUluU9aeRXedmg3cO+gTW8zVNqKX0toNPbOu4Bt0 CnWxMr2DNBQ2LzSJpJkcgbPTvmo9fk8YR90mlItYm5H9CgsjX5DpVBT8xOaerSgmLawIHF iRUYWMeLdPnIIG45AVIO2CeOGUAwnd/9+u+d/Hjiiz1HQ8NZVQqcpC7gT57OVg== Date: Tue, 27 Sep 2022 20:03:52 +0200 From: Javier Pello To: libc-alpha@sourceware.org Subject: [PATCH v3 0/8] Remove legacy hwcaps support Message-Id: <20220927200352.0424a12908a437fef9d3a7bc@otheo.eu> In-Reply-To: <20220917161748.2b76e1731a27eb78880ee57c@otheo.eu> References: <20220905200652.d69204581d15c64647da5cd2@otheo.eu> <87h71l9crb.fsf@oldenburg.str.redhat.com> <20220906201207.e7b3d08272af5649754e76b1@otheo.eu> <87h71i6rfa.fsf@oldenburg.str.redhat.com> <20220914200724.8e685fbbaf441c96d19011c6@otheo.eu> <20220917161748.2b76e1731a27eb78880ee57c@otheo.eu> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.32; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,JMQ_SPF_NEUTRAL,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP 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: Here is a respin of the series, now with 8 patches. Patch 1 removes the tst-x86_64-1 test, as requested, as this test would fail after the following commits. Patches 2-5 (formerly 1-4) implement the removal of legacy hwcaps support itself; all of them are reviewed except for patch 3, which missed updating a comment. Patch 6 adds a NEWS entry for the removal of the legacy hwcaps support. Patches 7 and 8 are unreviewed, and I wonder if they are wanted. I am myself unsure about patch 7, but the changes in patch 8 do simplify the code somewhat. Javier Pello (8): x86_64: Remove platform directory library loading test elf: Remove legacy hwcaps support from the dynamic loader elf: Remove legacy hwcaps support from ldconfig elf: Remove hwcap parameter from add_to_cache signature elf: Remove hwcap and bits_hwcap fields from struct cache_entry Add NEWS entry for legacy hwcaps removal elf: Remove _dl_string_hwcap elf: Simplify output of hwcap subdirectories in ld.so help NEWS | 5 +- elf/Makefile | 6 - elf/cache.c | 42 +--- elf/dl-hwcaps.c | 184 +----------------- elf/dl-usage.c | 75 +------ elf/ldconfig.c | 156 +-------------- sysdeps/alpha/dl-procinfo.h | 2 - sysdeps/csky/dl-procinfo.h | 2 - sysdeps/generic/dl-procinfo.h | 2 - sysdeps/generic/ldconfig.h | 2 +- sysdeps/mips/dl-procinfo.h | 2 - sysdeps/powerpc/dl-procinfo.h | 10 - sysdeps/s390/dl-procinfo.h | 14 -- sysdeps/sparc/dl-procinfo.h | 13 -- sysdeps/unix/sysv/linux/aarch64/dl-procinfo.h | 12 -- sysdeps/unix/sysv/linux/arm/dl-procinfo.h | 12 -- sysdeps/x86/dl-hwcap.h | 14 -- sysdeps/x86_64/Makefile | 16 -- sysdeps/x86_64/tst-x86_64-1.c | 26 --- sysdeps/x86_64/tst-x86_64mod-1.c | 22 --- 20 files changed, 40 insertions(+), 577 deletions(-) delete mode 100644 sysdeps/x86_64/tst-x86_64-1.c delete mode 100644 sysdeps/x86_64/tst-x86_64mod-1.c -- 2.37.3