Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932231AbbEHN01 (ORCPT ); Fri, 8 May 2015 09:26:27 -0400 Received: from terminus.zytor.com ([198.137.202.10]:48312 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932149AbbEHNZ5 (ORCPT ); Fri, 8 May 2015 09:25:57 -0400 Date: Fri, 8 May 2015 06:25:15 -0700 From: tip-bot for Preeti U Murthy Message-ID: Cc: mingo@kernel.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, peterz@infradead.org, bp@alien8.de, hpa@zytor.com, preeti@linux.vnet.ibm.com Reply-To: bp@alien8.de, hpa@zytor.com, preeti@linux.vnet.ibm.com, mingo@kernel.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, peterz@infradead.org In-Reply-To: <20150430115721.22278.94082.stgit@preeti.in.ibm.com> References: <20150430115721.22278.94082.stgit@preeti.in.ibm.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:locking/core] kernel: Replace reference to ASSIGN_ONCE() with WRITE_ONCE() in comment Git-Commit-ID: 663fdcbee0a656cdaef934e7f50e6c2670373bc9 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1893 Lines: 47 Commit-ID: 663fdcbee0a656cdaef934e7f50e6c2670373bc9 Gitweb: http://git.kernel.org/tip/663fdcbee0a656cdaef934e7f50e6c2670373bc9 Author: Preeti U Murthy AuthorDate: Thu, 30 Apr 2015 17:27:21 +0530 Committer: Ingo Molnar CommitDate: Fri, 8 May 2015 12:28:53 +0200 kernel: Replace reference to ASSIGN_ONCE() with WRITE_ONCE() in comment Looks like commit : 43239cbe79fc ("kernel: Change ASSIGN_ONCE(val, x) to WRITE_ONCE(x, val)") left behind a reference to ASSIGN_ONCE(). Update this to WRITE_ONCE(). Signed-off-by: Preeti U Murthy Signed-off-by: Peter Zijlstra (Intel) Cc: Borislav Petkov Cc: H. Peter Anvin Cc: Thomas Gleixner Cc: borntraeger@de.ibm.com Cc: dave@stgolabs.net Cc: paulmck@linux.vnet.ibm.com Link: http://lkml.kernel.org/r/20150430115721.22278.94082.stgit@preeti.in.ibm.com Signed-off-by: Ingo Molnar --- include/linux/compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/compiler.h b/include/linux/compiler.h index 8677225..a7c0941 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h @@ -450,7 +450,7 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s * with an explicit memory barrier or atomic instruction that provides the * required ordering. * - * If possible use READ_ONCE/ASSIGN_ONCE instead. + * If possible use READ_ONCE()/WRITE_ONCE() instead. */ #define __ACCESS_ONCE(x) ({ \ __maybe_unused typeof(x) __var = (__force typeof(x)) 0; \ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/