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=-16.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable 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 BF53EC433B4 for ; Tue, 11 May 2021 23:27:03 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 807846162B for ; Tue, 11 May 2021 23:27:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230096AbhEKX2J (ORCPT ); Tue, 11 May 2021 19:28:09 -0400 Received: from mail.kernel.org ([198.145.29.99]:53662 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229848AbhEKX1g (ORCPT ); Tue, 11 May 2021 19:27:36 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 4D53C61626; Tue, 11 May 2021 23:26:29 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620775589; bh=ByFhsJzgyVmzsHlJ/ZAOETPN5zcLmH100XfPg5/iLys=; h=Date:From:To:Cc:Subject:Reply-To:From; b=bXeggXC99FhfVYiQ4Rb5kFgwVcf/Ei3wy9w0r7KQwUNXElAwE2Hhbz0c+6YrqSP4X 9V/VClA3MgrAZOEuaOBSYdqHGTiFa7AYBxr9wdpBUJUy5vmH9osaV0xXhBc6dYyKip vpYJP+yTveuRw7MVbPVBnTYhsKBl+lPY8XZvVbF0YHL3vT2bKSQgYssUcnv8YfZXMQ M3yyXM90TWxKdvnOMm34iPWmbH41DuNoppgQA9tXN455yuqVHv4j6rxN/XO+t/O2sk 8phoU7klEUHfizJdIeEIitHBlaK7XW7bSZm0HmjZKD96oMnCrgGsfOdSdki1I5BWCJ UAY0qyU40rXCQ== Received: by paulmck-ThinkPad-P17-Gen-1.home (Postfix, from userid 1000) id 0A7535C0138; Tue, 11 May 2021 16:26:29 -0700 (PDT) Date: Tue, 11 May 2021 16:26:29 -0700 From: "Paul E. McKenney" To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, kernel-team@fb.com, mingo@kernel.org Cc: stern@rowland.harvard.edu, parri.andrea@gmail.com, will@kernel.org, peterz@infradead.org, boqun.feng@gmail.com, npiggin@gmail.com, dhowells@redhat.com, j.alglave@ucl.ac.uk, luc.maranget@inria.fr, akiyks@gmail.com Subject: [PATCH memory-model] Fix smp_mb__after_spinlock() spelling Message-ID: <20210511232629.GA2896493@paulmck-ThinkPad-P17-Gen-1> Reply-To: paulmck@kernel.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org A misspelled git-grep regex revealed that smp_mb__after_spinlock() was misspelled in explanation.txt. This commit adds the missing "_". Fixes: 1c27b644c0fd ("Automate memory-barriers.txt; provide Linux-kernel memory model") [ paulmck: Apply Alan Stern commit-log feedback. ] Signed-off-by: Björn Töpel Signed-off-by: Paul E. McKenney diff --git a/tools/memory-model/Documentation/explanation.txt b/tools/memory-model/Documentation/explanation.txt index f9d610d5a1a4..5d72f3112e56 100644 --- a/tools/memory-model/Documentation/explanation.txt +++ b/tools/memory-model/Documentation/explanation.txt @@ -2510,7 +2510,7 @@ they behave as follows: smp_mb__after_atomic() orders po-earlier atomic updates and the events preceding them against all po-later events; - smp_mb_after_spinlock() orders po-earlier lock acquisition + smp_mb__after_spinlock() orders po-earlier lock acquisition events and the events preceding them against all po-later events.