From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1105) id 97BC53858C5F; Thu, 8 Feb 2024 01:39:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 97BC53858C5F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707356365; bh=d849UFWC6Fs1Q13Jff1W3DTk1byvIBi3fwr6IgW26kY=; h=From:To:Subject:Date:From; b=xji7Nu6hzrCAkF63w0uxXPgRjTM1gDbrtnoDyRAkBfbkeUNWTUH0QP3GWXuk06IXT 0lPuNOZCZgk5YBZ27dk6KzvrjCJ6xyk8S5bch1xsFLA9ow2HOXNldux8YU2veUat21 KukcHbTsKXZhgs7ZbnMSgMWSj+/RlHQSXBa7AuxM= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Joseph Myers To: glibc-cvs@sourceware.org Subject: [glibc] Add new AArch64 HWCAP2 definitions from Linux 6.7 to bits/hwcap.h X-Act-Checkin: glibc X-Git-Author: Joseph Myers X-Git-Refname: refs/heads/master X-Git-Oldrev: fa3eb7d5e7d32ca1ad48b48a7eb6d15b8382c3a7 X-Git-Newrev: 284b92832119225d1694a587019cbf47a7146e67 Message-Id: <20240208013925.97BC53858C5F@sourceware.org> Date: Thu, 8 Feb 2024 01:39:25 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=284b92832119225d1694a587019cbf47a7146e67 commit 284b92832119225d1694a587019cbf47a7146e67 Author: Joseph Myers Date: Thu Feb 8 01:39:09 2024 +0000 Add new AArch64 HWCAP2 definitions from Linux 6.7 to bits/hwcap.h Linux 6.7 adds three new HWCAP2_* values for AArch64; add them to bits/hwcap.h in glibc. Diff: --- sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index 91f0e312b9..f82bde5d30 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -100,3 +100,6 @@ #define HWCAP2_SME_F16F16 (1UL << 42) #define HWCAP2_MOPS (1UL << 43) #define HWCAP2_HBC (1UL << 44) +#define HWCAP2_SVE_B16B16 (1UL << 45) +#define HWCAP2_LRCPC3 (1UL << 46) +#define HWCAP2_LSE128 (1UL << 47)