From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from forward501c.mail.yandex.net (forward501c.mail.yandex.net [178.154.239.209]) by sourceware.org (Postfix) with ESMTPS id 52FB63858D32 for ; Sat, 11 Feb 2023 20:10:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 52FB63858D32 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=yandex.ru Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=yandex.ru Received: from myt5-69594d4a41fa.qloud-c.yandex.net (myt5-69594d4a41fa.qloud-c.yandex.net [IPv6:2a02:6b8:c12:3ca5:0:640:6959:4d4a]) by forward501c.mail.yandex.net (Yandex) with ESMTP id B1FD85EC98; Sat, 11 Feb 2023 23:10:30 +0300 (MSK) Received: by myt5-69594d4a41fa.qloud-c.yandex.net (smtp/Yandex) with ESMTPSA id SAnSokNY2iE1-45CaMmTh; Sat, 11 Feb 2023 23:10:30 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1676146230; bh=EtcXFTS1HrT/mqqN6nGr3LtSmnbH3FjJQ4o883PDk3U=; h=From:In-Reply-To:Cc:Date:References:To:Subject:Message-ID; b=oOapRb7jRG3ff+RNqteyccZ70ZVlo79D4ixntjJYQN7yYQhLm3T8MXKuX7rN2M+0n 6Z8VHF8EZge/QZrfUpT1NJp12kQamDMbZPxnAw45eGvBBTGVCWdxdS1Bhf0oIOnS+5 j2cJZzF2yUkiHx7L1uGIgjZGV+/HByo48BtqBbHg= Authentication-Results: myt5-69594d4a41fa.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <99c1d55b-a632-ec08-1c9b-870b7409ad74@yandex.ru> Date: Sun, 12 Feb 2023 01:10:28 +0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Subject: Re: [PATCH 2/2] dlfcn,elf: implement dlmem() function [BZ #11767] Content-Language: en-US To: Joseph Myers Cc: libc-alpha@sourceware.org References: <20230210140744.2828787-1-stsp2@yandex.ru> <20230210140744.2828787-2-stsp2@yandex.ru> <5a565390-dbc7-b18f-37b-b9742e87a51b@codesourcery.com> From: stsp In-Reply-To: <5a565390-dbc7-b18f-37b-b9742e87a51b@codesourcery.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.4 required=5.0 tests=BAYES_00,BODY_8BITS,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,GIT_PATCH_0,NICE_REPLY_A,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: Hello, 11.02.2023 02:51, Joseph Myers пишет: > On Fri, 10 Feb 2023, Stas Sergeev via Libc-alpha wrote: > >> diff --git a/dlfcn/Versions b/dlfcn/Versions >> index cc34eb824d..6ce06cfaaf 100644 >> --- a/dlfcn/Versions >> +++ b/dlfcn/Versions >> @@ -25,6 +25,7 @@ libc { >> dlinfo; >> dlmopen; >> dlopen; >> + dlmem; >> dlsym; >> dlvsym; >> } > A new function needs to be given the symbol version of the *next* release, > not added to Versions for an *old* release. And then all abilist files > need updating, not just one. Changed to 2.37, updated abifiles. >> +#include "../test-skeleton.c" > New tests should not use the old test-skeleton.c, they should use > instead. Done and re-sent.