Message ID | 20250103154141.47731-17-yury.khrustalev@arm.com (mailing list archive) |
---|---|
State | Superseded |
Headers |
Return-Path: <libc-alpha-bounces~patchwork=sourceware.org@sourceware.org> X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 4A2BA385841D for <patchwork@sourceware.org>; Fri, 3 Jan 2025 15:47:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4A2BA385841D X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by sourceware.org (Postfix) with ESMTP id 691753858C31 for <libc-alpha@sourceware.org>; Fri, 3 Jan 2025 15:43:21 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 691753858C31 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=arm.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 691753858C31 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1735919001; cv=none; b=ZnJ+pKkYnwbKFzv2FWrqkaMO/gxLOV43H1DfUfiudSzcMzoIt/k9TVimNsjA75LR2Kmy/X4B0Se4P5FLMy4NbmoCBClqCiys+xvH4E61k3MN+oEoLWNdyGxHv9LHeWExvHdnQ/w7Pgc0+5GFZrhIGL6y7kOC6rXxyEFeUOf6AKE= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1735919001; c=relaxed/simple; bh=vl8RbJQZY5c+u/nhTqrafltNkWKeE9u2oYq3wsklS6A=; h=From:To:Subject:Date:Message-Id:MIME-Version; b=laCMxsCIF4/ZSy0j4UJKVAFYT0MwYtMsIlSQPjq/RMFqqaGPFA8BFOMohwJMu/n7ijgObdaw+ih4WhYO5mWbGpOINH+aclwrq/NVWJWnDdEbPNBYrN2r4FST4SKRKADrxpKLr+59t5XN6CUNsbRSp4rtNT20IOCmMHWReh11z6w= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 691753858C31 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 6AF1F1480; Fri, 3 Jan 2025 07:43:49 -0800 (PST) Received: from udebian.localdomain (unknown [10.57.3.206]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 2B5CF3F6A8; Fri, 3 Jan 2025 07:43:20 -0800 (PST) From: Yury Khrustalev <yury.khrustalev@arm.com> To: libc-alpha@sourceware.org Cc: fweimer@redhat.com, adhemerval.zanella@linaro.org, codonell@redhat.com, nsz@gcc.gnu.org, schwab@suse.de, wilco.dijkstra@arm.com Subject: [PATCH v7 16/23] manual: Add glibc.cpu.aarch64_gcs_policy tunable Date: Fri, 3 Jan 2025 15:41:34 +0000 Message-Id: <20250103154141.47731-17-yury.khrustalev@arm.com> X-Mailer: git-send-email 2.39.5 In-Reply-To: <20250103154141.47731-1-yury.khrustalev@arm.com> References: <20250103154141.47731-1-yury.khrustalev@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.3 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, 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.30 Precedence: list List-Id: Libc-alpha mailing list <libc-alpha.sourceware.org> List-Unsubscribe: <https://sourceware.org/mailman/options/libc-alpha>, <mailto:libc-alpha-request@sourceware.org?subject=unsubscribe> List-Archive: <https://sourceware.org/pipermail/libc-alpha/> List-Post: <mailto:libc-alpha@sourceware.org> List-Help: <mailto:libc-alpha-request@sourceware.org?subject=help> List-Subscribe: <https://sourceware.org/mailman/listinfo/libc-alpha>, <mailto:libc-alpha-request@sourceware.org?subject=subscribe> Errors-To: libc-alpha-bounces~patchwork=sourceware.org@sourceware.org |
Series |
aarch64: Add support for Guarded Control Stack extension
|
|
Checks
Context | Check | Description |
---|---|---|
redhat-pt-bot/TryBot-apply_patch | success | Patch applied to master at the time it was sent |
Commit Message
Yury Khrustalev
Jan. 3, 2025, 3:41 p.m. UTC
Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com> Reviewed-by: Carlos O'Donell <carlos@redhat.com> --- manual/tunables.texi | 6 ++++++ 1 file changed, 6 insertions(+)
Comments
On 03/01/25 12:41, Yury Khrustalev wrote: > Reviewed-by: Wilco Dijkstra <Wilco.Dijkstra@arm.com> > Reviewed-by: Carlos O'Donell <carlos@redhat.com> Maybe squash with the previous patch, since the usual policy is to add the manual entry when the tunable is added. > --- > manual/tunables.texi | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/manual/tunables.texi b/manual/tunables.texi > index ca92bc980d..2440920b75 100644 > --- a/manual/tunables.texi > +++ b/manual/tunables.texi > @@ -675,6 +675,12 @@ This tunable name is reserved for future use. > This tunable is specific to AArch64. > @end deftp > > +@deftp Tunable glibc.cpu.aarch64_gcs_policy > +This tunable name is reserved for future use. > + > +This tunable is specific to AArch64. > +@end deftp > + > @node Memory Related Tunables > @section Memory Related Tunables > @cindex memory related tunables
On Tue, Jan 07, 2025 at 01:38:40PM -0300, Adhemerval Zanella Netto wrote: > > Maybe squash with the previous patch, since the usual policy is to > add the manual entry when the tunable is added. OK, I will squash commit adding a tunable with commit that also adds it to the manual. I'll do this for both tunables in this series. Thanks, Yury
diff --git a/manual/tunables.texi b/manual/tunables.texi index ca92bc980d..2440920b75 100644 --- a/manual/tunables.texi +++ b/manual/tunables.texi @@ -675,6 +675,12 @@ This tunable name is reserved for future use. This tunable is specific to AArch64. @end deftp +@deftp Tunable glibc.cpu.aarch64_gcs_policy +This tunable name is reserved for future use. + +This tunable is specific to AArch64. +@end deftp + @node Memory Related Tunables @section Memory Related Tunables @cindex memory related tunables