From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailbox.box.xen0n.name (mail.xen0n.name [115.28.160.31]) by sourceware.org (Postfix) with ESMTPS id 858493857BAD for ; Wed, 27 Jul 2022 05:27:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 858493857BAD Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=xen0n.name Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=xen0n.name DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=xen0n.name; s=mail; t=1658899638; bh=8d3cDx7x/XglBy14ITNv3yWGU9EHNMgKCcquI/W1osw=; h=Date:Subject:To:References:From:In-Reply-To:From; b=jom0yVgMxZaqPD25RIW6ztYAQsgb6airsWiLGLt2AjVIiY4dOWkUV2q2TclNH/gXB q9dGG7oNdnUBmgnio5SByBtPgzVYJ2iassD6NjM6QpNv78I6fXEXprQf3LazsQDDgF jIxb3W/ImP1fY7aYqXSLZtR0DytUwKCQd0uqeKv0= Received: from [100.100.57.219] (unknown [220.248.53.61]) (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 mailbox.box.xen0n.name (Postfix) with ESMTPSA id B140760610; Wed, 27 Jul 2022 13:27:18 +0800 (CST) Message-ID: Date: Wed, 27 Jul 2022 13:27:18 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:105.0) Gecko/20100101 Thunderbird/105.0a1 Subject: Re: [PATCH v7 07/13] LoongArch: Linux Syscall Interface To: caiyinyu , adhemerval.zanella@linaro.org, libc-alpha@sourceware.org, joseph_myers@mentor.com, carlos@redhat.com, i.swmail@xen0n.name References: <20220719012056.1461897-1-caiyinyu@loongson.cn> <20220719012056.1461897-8-caiyinyu@loongson.cn> Content-Language: en-US From: WANG Xuerui In-Reply-To: <20220719012056.1461897-8-caiyinyu@loongson.cn> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, 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 X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2022 05:27:28 -0000 Wait. I almost missed this, glad I took an extra look before starting afternoon's $DAY_JOB work... On 2022/7/19 09:20, caiyinyu wrote: > |+#define VDSO_NAME "LINUX_2.6" +#define VDSO_HASH 61765110| |According to Linux sources [1], this should be "LINUX_5.10" instead, and the hash should be 182947696. The current value is for the old world and will lead to the vDSO being essentially wasted. | |To the Release Manager: do this need a proper patch, or if this can be fixed up in the branch pending inclusion? I can prepare one in short order if that's the proper way. | |[1]: https://github.com/torvalds/linux/blob/v5.19-rc8/arch/loongarch/vdso/vdso.lds.S#L59 |