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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,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 AF0BEC433DF for ; Tue, 23 Jun 2020 00:52:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 839EE20738 for ; Tue, 23 Jun 2020 00:52:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592873571; bh=pPT7PfjJzKSC81ptYixfp/4tz9OcnAEgAnp+0SKw3X0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=LUrGIlw1hkEQ52Wfyt2pchU2hS6BrPjadmUWiwOMZLU3DebpzXBFlbSayPaGFlGpH m4n8pwAYvVnx0ZL3uMH8WigmwkMCeHfWIh0EYIvrFWDFR8i7TMvChOERlCzO+H/GI9 pLJ80YdyQXyJwEOw4DknY2/m4BHRvONoxqzmcXmo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732432AbgFWAwp (ORCPT ); Mon, 22 Jun 2020 20:52:45 -0400 Received: from mail.kernel.org ([198.145.29.99]:46624 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732386AbgFWAwf (ORCPT ); Mon, 22 Jun 2020 20:52:35 -0400 Received: from paulmck-ThinkPad-P72.home (50-39-105-78.bvtn.or.frontiernet.net [50.39.105.78]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id D15F420738; Tue, 23 Jun 2020 00:52:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592873554; bh=pPT7PfjJzKSC81ptYixfp/4tz9OcnAEgAnp+0SKw3X0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g3UyqNZdqT563LcDgE0gmQJVPdONZWjpJN7kS8A8bb9fXMVP1Dh/xO5z4cTLT04Ff rkxTCMhskIOoKcCkUL1pDejZDPzTk6Ww2870xk6I3kn/1rhS41Kij6xFd0krTi/vh9 +ZoCMKr6Ne/boZ4z0NuGT78fLyH9QeIAjdFPyeSc= From: paulmck@kernel.org 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, "Paul E . McKenney" Subject: [PATCH tip/core/rcu 10/14] tools/memory-model: Fix reference to litmus test in recipes.txt Date: Mon, 22 Jun 2020 17:52:27 -0700 Message-Id: <20200623005231.27712-10-paulmck@kernel.org> X-Mailer: git-send-email 2.9.5 In-Reply-To: <20200623005152.GA27459@paulmck-ThinkPad-P72> References: <20200623005152.GA27459@paulmck-ThinkPad-P72> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Akira Yokosawa The name of litmus test doesn't match the one described below. Fix the name of litmus test. Acked-by: Andrea Parri Acked-by: Joel Fernandes (Google) Signed-off-by: Akira Yokosawa Signed-off-by: Paul E. McKenney --- tools/memory-model/Documentation/recipes.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/memory-model/Documentation/recipes.txt b/tools/memory-model/Documentation/recipes.txt index 7fe8d7a..63c4adf 100644 --- a/tools/memory-model/Documentation/recipes.txt +++ b/tools/memory-model/Documentation/recipes.txt @@ -126,7 +126,7 @@ However, it is not necessarily the case that accesses ordered by locking will be seen as ordered by CPUs not holding that lock. Consider this example: - /* See Z6.0+pooncerelease+poacquirerelease+fencembonceonce.litmus. */ + /* See Z6.0+pooncelock+pooncelock+pombonce.litmus. */ void CPU0(void) { spin_lock(&mylock); -- 2.9.5