Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1438974

[PATCH] make WRITE_ONCE return void

From Alexey Dobriyan <adobriyan@gmail.com>
Newsgroups linux.kernel
Subject [PATCH] make WRITE_ONCE return void
Date 2016-07-08 00:30 +0200
Message-ID <rSpXY-4yB-65@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Currently WRITE_ONCE is used as if it returns void. Let's codify this
before somebody tries to be smarter than necessary.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---

 include/linux/compiler.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/include/linux/compiler.h
+++ b/include/linux/compiler.h
@@ -301,7 +301,7 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s
 	union { typeof(x) __val; char __c[1]; } __u =	\
 		{ .__val = (__force typeof(x)) (val) }; \
 	__write_once_size(&(x), __u.__c, sizeof(x));	\
-	__u.__val;					\
+	(void)0;					\
 })
 
 /**

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] make WRITE_ONCE return void Alexey Dobriyan <adobriyan@gmail.com> - 2016-07-08 00:30 +0200
  Re: [PATCH] make WRITE_ONCE return void Peter Zijlstra <peterz@infradead.org> - 2016-07-08 10:10 +0200
    Re: [PATCH] make WRITE_ONCE return void Alexey Dobriyan <adobriyan@gmail.com> - 2016-07-08 12:30 +0200

csiph-web