From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DB294C55178 for ; Sat, 31 Oct 2020 00:27:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9D5BC206E5 for ; Sat, 31 Oct 2020 00:27:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726051AbgJaA1z (ORCPT ); Fri, 30 Oct 2020 20:27:55 -0400 Received: from mga06.intel.com ([134.134.136.31]:24068 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726007AbgJaA1y (ORCPT ); Fri, 30 Oct 2020 20:27:54 -0400 IronPort-SDR: H7Zhybkoabgslbjn3XoEncKkKwne+Bjlivv+fvjI8JpHjCAp2VWxMiNBv9pUUk848Xp3+uJq7e fRiU87P5fgZg== X-IronPort-AV: E=McAfee;i="6000,8403,9790"; a="230318027" X-IronPort-AV: E=Sophos;i="5.77,435,1596524400"; d="scan'208";a="230318027" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Oct 2020 17:27:54 -0700 IronPort-SDR: hZAb3/MFr/KGy2FkeZK/PsuKBqM6aa2Qv6hZdX49KYQoAeckHWbK68/YSS0PD7gVKH5BsK+saE ANwD7VtTlR2w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,435,1596524400"; d="scan'208";a="469683915" Received: from otcwcpicx6.sc.intel.com ([172.25.55.29]) by orsmga004.jf.intel.com with ESMTP; 30 Oct 2020 17:27:53 -0700 From: Fenghua Yu To: "Thomas Gleixner" , "Borislav Petkov" , "Ingo Molnar" , "Peter Zijlstra" , "Randy Dunlap" , "Tony Luck" , "Christopherson Sean J" , "Ashok Raj" , "Ravi V Shankar" Cc: "linux-kernel" , "x86" , Fenghua Yu Subject: [PATCH RFC v3 4/4] Documentation/admin-guide: Change doc for split_lock_detect parameter Date: Sat, 31 Oct 2020 00:27:14 +0000 Message-Id: <20201031002714.3649728-5-fenghua.yu@intel.com> X-Mailer: git-send-email 2.29.1 In-Reply-To: <20201031002714.3649728-1-fenghua.yu@intel.com> References: <20201031002714.3649728-1-fenghua.yu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Since #DB for bus lock detect changes the split_lock_detect parameter, update the documentation for the changes. Signed-off-by: Fenghua Yu Reviewed-by: Tony Luck --- Change Log: - Simplify the documentation (Randy). .../admin-guide/kernel-parameters.txt | 28 +++++++++++++++---- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/Documentation/admin-guide/kernel-parameters.txt b/Documentation/admin-guide/kernel-parameters.txt index 526d65d8573a..ee419ce659f5 100644 --- a/Documentation/admin-guide/kernel-parameters.txt +++ b/Documentation/admin-guide/kernel-parameters.txt @@ -5044,27 +5044,45 @@ spia_peddr= split_lock_detect= - [X86] Enable split lock detection + [X86] Enable split lock detection or bus lock detection When enabled (and if hardware support is present), atomic instructions that access data across cache line - boundaries will result in an alignment check exception. + boundaries will result in an alignment check exception + for split lock detection or a debug exception for + bus lock detection. off - not enabled warn - the kernel will emit rate limited warnings about applications triggering the #AC - exception. This mode is the default on CPUs - that supports split lock detection. + exception or the #DB exception. This mode is + the default on CPUs that supports split lock + detection or bus lock detection. Default + behavior is from #DB if both features are + enabled in hardware. fatal - the kernel will send SIGBUS to applications - that trigger the #AC exception. + that trigger the #AC exception or the #DB + exception. Default behavior is from #AC + if both features are enabled in hardware. + + ratelimit:N - + Set rate limit to N bus locks per second + for bus lock detection. 0 < N <= HZ/2 and + N is approximate. Only applied to non root + user. + + N/A for split lock detection. If an #AC exception is hit in the kernel or in firmware (i.e. not while executing in user mode) the kernel will oops in either "warn" or "fatal" mode. + #DB exception for bus lock is triggered only when + CPL > 0. + srbds= [X86,INTEL] Control the Special Register Buffer Data Sampling (SRBDS) mitigation. -- 2.29.1