From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id 7F077385084D; Wed, 12 Oct 2022 14:16:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7F077385084D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1665584175; bh=/dMFlpc2SWyKA5JoqdoHlUd8VdsTNS4t68aabEtO53Y=; h=From:To:Subject:Date:From; b=dR6fXHruHIL8ZS41zvrGgpEt7Z+bIQrupED8+XYO9ZO7dgMeKl96JcAN2CQS6Issi bMsjeClHImI609XUtPte/9EkXbjZTOdCvRLul39l06vp5Xzs8Ww8oKeLpVAE9OcqXS NgNGomxJjdxRhkcQF7inkQZ9aJor4ljDV+9UMJCM= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Szabolcs Nagy To: glibc-cvs@sourceware.org Subject: [glibc/arm/morello/main] aarch64: morello: update HWCAP2_MORELLO value X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/arm/morello/main X-Git-Oldrev: afbfdd28bd9006bfd1f07a41227bf9b1820df4ba X-Git-Newrev: 284e4f17554381cac5f9b90cf85a1f3fc7fce6f3 Message-Id: <20221012141615.7F077385084D@sourceware.org> Date: Wed, 12 Oct 2022 14:16:15 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=284e4f17554381cac5f9b90cf85a1f3fc7fce6f3 commit 284e4f17554381cac5f9b90cf85a1f3fc7fce6f3 Author: Szabolcs Nagy Date: Tue Aug 23 16:37:25 2022 +0100 aarch64: morello: update HWCAP2_MORELLO value Unfortunately this will keep changing during the development as upstream linux did not want to reserve a bit for morello. Diff: --- sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index d61ab83d9e..29c1fe0c0e 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -78,4 +78,4 @@ #define HWCAP2_AFP (1 << 20) #define HWCAP2_RPRES (1 << 21) #define HWCAP2_MTE3 (1 << 22) -#define HWCAP2_MORELLO (1 << 19) /* FIXME: This bit will change. */ +#define HWCAP2_MORELLO (1UL << 31) /* FIXME: This bit will change. */