[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150430115721.22278.94082.stgit@preeti.in.ibm.com>
Date: Thu, 30 Apr 2015 17:27:21 +0530
From: Preeti U Murthy <preeti@...ux.vnet.ibm.com>
To: borntraeger@...ibm.com
Cc: peterz@...radead.org, paulmck@...ux.vnet.ibm.com,
dave@...olabs.net, linux-kernel@...r.kernel.org
Subject: [PATCH] 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 <preeti@...ux.vnet.ibm.com>
---
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 0e41ca0..e65e0a7 100644
--- a/include/linux/compiler.h
+++ b/include/linux/compiler.h
@@ -446,7 +446,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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists