From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1105) id 0B5F638418AC; Wed, 1 Jun 2022 14:43:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0B5F638418AC 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 HWCAP2_MTE3 from Linux 5.18 to AArch64 bits/hwcap.h X-Act-Checkin: glibc X-Git-Author: Joseph Myers X-Git-Refname: refs/heads/master X-Git-Oldrev: 5a6f2cabb62b2d5e4c356718283b6cb7e440ac9c X-Git-Newrev: 9d03bac7e7aa140dc3f48ac884e83265ee4f94c5 Message-Id: <20220601144321.0B5F638418AC@sourceware.org> Date: Wed, 1 Jun 2022 14:43:21 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jun 2022 14:43:21 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9d03bac7e7aa140dc3f48ac884e83265ee4f94c5 commit 9d03bac7e7aa140dc3f48ac884e83265ee4f94c5 Author: Joseph Myers Date: Wed Jun 1 14:43:06 2022 +0000 Add HWCAP2_MTE3 from Linux 5.18 to AArch64 bits/hwcap.h Linux 5.18 defines a new AArch64 HWCAP value HWCAP2_MTE3; add it to glibc's sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h. Tested with build-many-glibcs.py for aarch64-linux-gnu. Diff: --- sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index a1cf59270f..616239bb84 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -77,3 +77,4 @@ #define HWCAP2_ECV (1 << 19) #define HWCAP2_AFP (1 << 20) #define HWCAP2_RPRES (1 << 21) +#define HWCAP2_MTE3 (1 << 22)