* [PATCH] make WRITE_ONCE return void
@ 2016-07-07 22:20 Alexey Dobriyan
2016-07-08 8:02 ` Peter Zijlstra
0 siblings, 1 reply; 3+ messages in thread
From: Alexey Dobriyan @ 2016-07-07 22:20 UTC (permalink / raw)
To: akpm, peterz; +Cc: linux-kernel
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; \
})
/**
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] make WRITE_ONCE return void
2016-07-07 22:20 [PATCH] make WRITE_ONCE return void Alexey Dobriyan
@ 2016-07-08 8:02 ` Peter Zijlstra
2016-07-08 10:20 ` Alexey Dobriyan
0 siblings, 1 reply; 3+ messages in thread
From: Peter Zijlstra @ 2016-07-08 8:02 UTC (permalink / raw)
To: Alexey Dobriyan; +Cc: akpm, linux-kernel
On Fri, Jul 08, 2016 at 01:20:08AM +0300, Alexey Dobriyan wrote:
> 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; \
> })
Why then still use the statement expression? Would it not make more
sense to change it into the regular do { } while (0) form if you want to
remove the return semantics?
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] make WRITE_ONCE return void
2016-07-08 8:02 ` Peter Zijlstra
@ 2016-07-08 10:20 ` Alexey Dobriyan
0 siblings, 0 replies; 3+ messages in thread
From: Alexey Dobriyan @ 2016-07-08 10:20 UTC (permalink / raw)
To: Peter Zijlstra; +Cc: Andrew Morton, Linux Kernel
On Fri, Jul 8, 2016 at 11:02 AM, Peter Zijlstra <peterz@infradead.org> wrote:
> On Fri, Jul 08, 2016 at 01:20:08AM +0300, Alexey Dobriyan wrote:
>> 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; \
>> })
>
> Why then still use the statement expression? Would it not make more
> sense to change it into the regular do { } while (0) form if you want to
> remove the return semantics?
Statement expression is better because it is an expression
so you can write code like
foo ? WRITE_ONCE(a, 0) : WRITE_ONCE(b, 0)
or
for (... ; ... ; WRITE_ONCE(a, 0), x++)
"do {} while (0)" should be deprecated really.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-07-08 10:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-07 22:20 [PATCH] make WRITE_ONCE return void Alexey Dobriyan
2016-07-08 8:02 ` Peter Zijlstra
2016-07-08 10:20 ` Alexey Dobriyan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®