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 658323858294 for ; Sat, 17 Sep 2022 14:19:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 658323858294 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 851B51C0003 for ; Sat, 17 Sep 2022 14:19:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=otheo.eu; s=gm1; t=1663424347; 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=PXNJD0OsXqSUnzAC/zVAlncuPh/f/KKIzILXvIAO/nM=; b=fr1xv8fn5YOrOp8vimzzjc0ayNi8huz0Ouno7ASvzlEsYAIq2TnTB1K/0BgBfbYfeN3CtM L1JdTFL8HAe/iHgFBRJWBqR9UjEEPXbx3cjFLCvjWccya6YBJAo/+Y+vw80gbEhdMpCxbh ScsMAuW57z1D8PiFHmYmf0xa9fKlix24S0XKQvLdgztNezGaVanL36GFwQ3q1C2DxacMFl SiMZEaqgs/+k9O3Ulgl03UyM8wibR39RfAGB26Bh2igOo84D2WSKNpeRHAEI9sgYAa7OjY fgb7lVXNJIWpilrIjTpYkaVDhSR3xINJLUGiAGogZzfM51sUB4CPh8A8XpJ0vQ== Date: Sat, 17 Sep 2022 16:17:48 +0200 From: Javier Pello To: libc-alpha@sourceware.org Subject: [PATCH v2 0/6] Remove legacy hwcaps support Message-Id: <20220917161748.2b76e1731a27eb78880ee57c@otheo.eu> In-Reply-To: <20220914200724.8e685fbbaf441c96d19011c6@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> 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.5 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 an updated version. The problem was in the first patch, not the last one--I guess that I misunderstood the output from CI. The patch removed _all_ of the power set subdirectories from the search path, but the base subdirectory (no bits set) has to be preserved, because it is not added anywhere else. Javier Pello (6): 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 elf: Remove _dl_string_hwcap elf: Simplify output of hwcap subdirectories in ld.so help elf/Makefile | 6 - elf/cache.c | 42 +--- elf/dl-hwcaps.c | 184 +----------------- elf/dl-usage.c | 75 +------ elf/ldconfig.c | 150 +------------- 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 -- 16 files changed, 34 insertions(+), 508 deletions(-) -- 2.36.0