* [PATCH] powerpc: Fix __cmpxchg() to take a volatile ptr again
@ 2016-11-25 3:07 Michael Ellerman
2016-11-25 4:26 ` Pan Xinhui
2016-11-28 12:15 ` Michael Ellerman
0 siblings, 2 replies; 3+ messages in thread
From: Michael Ellerman @ 2016-11-25 3:07 UTC (permalink / raw)
To: linuxppc-dev; +Cc: xinhui.pan, peterz
In commit d0563a1297e2 ("powerpc: Implement {cmp}xchg for u8 and u16")
we removed the volatile from __cmpxchg().
This is leading to warnings such as:
drivers/gpu/drm/drm_lock.c: In function ‘drm_lock_take’:
arch/powerpc/include/asm/cmpxchg.h:484:37: warning: passing argument 1
of ‘__cmpxchg’ discards ‘volatile’ qualifier from pointer target
(__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
There doesn't seem to be consensus across architectures whether the
argument is volatile or not, so at least for now put the volatile back.
Fixes: d0563a1297e2 ("powerpc: Implement {cmp}xchg for u8 and u16")
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
---
arch/powerpc/include/asm/cmpxchg.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/powerpc/include/asm/cmpxchg.h b/arch/powerpc/include/asm/cmpxchg.h
index c12f110261b2..fc46b664c49e 100644
--- a/arch/powerpc/include/asm/cmpxchg.h
+++ b/arch/powerpc/include/asm/cmpxchg.h
@@ -14,7 +14,7 @@
#endif
#define XCHG_GEN(type, sfx, cl) \
-static inline u32 __xchg_##type##sfx(void *p, u32 val) \
+static inline u32 __xchg_##type##sfx(volatile void *p, u32 val) \
{ \
unsigned int prev, prev_mask, tmp, bitoff, off; \
\
@@ -40,7 +40,7 @@ static inline u32 __xchg_##type##sfx(void *p, u32 val) \
#define CMPXCHG_GEN(type, sfx, br, br2, cl) \
static inline \
-u32 __cmpxchg_##type##sfx(void *p, u32 old, u32 new) \
+u32 __cmpxchg_##type##sfx(volatile void *p, u32 old, u32 new) \
{ \
unsigned int prev, prev_mask, tmp, bitoff, off; \
\
@@ -399,7 +399,7 @@ __cmpxchg_u64_acquire(u64 *p, unsigned long old, unsigned long new)
#endif
static __always_inline unsigned long
-__cmpxchg(void *ptr, unsigned long old, unsigned long new,
+__cmpxchg(volatile void *ptr, unsigned long old, unsigned long new,
unsigned int size)
{
switch (size) {
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] powerpc: Fix __cmpxchg() to take a volatile ptr again
2016-11-25 3:07 [PATCH] powerpc: Fix __cmpxchg() to take a volatile ptr again Michael Ellerman
@ 2016-11-25 4:26 ` Pan Xinhui
2016-11-28 12:15 ` Michael Ellerman
1 sibling, 0 replies; 3+ messages in thread
From: Pan Xinhui @ 2016-11-25 4:26 UTC (permalink / raw)
To: Michael Ellerman, linuxppc-dev; +Cc: xinhui.pan, peterz
在 2016/11/25 11:07, Michael Ellerman 写道:
> In commit d0563a1297e2 ("powerpc: Implement {cmp}xchg for u8 and u16")
> we removed the volatile from __cmpxchg().
>
> This is leading to warnings such as:
>
> drivers/gpu/drm/drm_lock.c: In function ‘drm_lock_take’:
> arch/powerpc/include/asm/cmpxchg.h:484:37: warning: passing argument 1
> of ‘__cmpxchg’ discards ‘volatile’ qualifier from pointer target
> (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
>
> There doesn't seem to be consensus across architectures whether the
> argument is volatile or not, so at least for now put the volatile back.
>
> Fixes: d0563a1297e2 ("powerpc: Implement {cmp}xchg for u8 and u16")
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
> ---
Hi, mpe
We implement __cmpxchg in asm so volatile maybe is not needed I think.
But seems compiler is not happy :(
I am okay with your patch. thanks!
> arch/powerpc/include/asm/cmpxchg.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/arch/powerpc/include/asm/cmpxchg.h b/arch/powerpc/include/asm/cmpxchg.h
> index c12f110261b2..fc46b664c49e 100644
> --- a/arch/powerpc/include/asm/cmpxchg.h
> +++ b/arch/powerpc/include/asm/cmpxchg.h
> @@ -14,7 +14,7 @@
> #endif
>
> #define XCHG_GEN(type, sfx, cl) \
> -static inline u32 __xchg_##type##sfx(void *p, u32 val) \
> +static inline u32 __xchg_##type##sfx(volatile void *p, u32 val) \
> { \
> unsigned int prev, prev_mask, tmp, bitoff, off; \
> \
> @@ -40,7 +40,7 @@ static inline u32 __xchg_##type##sfx(void *p, u32 val) \
>
> #define CMPXCHG_GEN(type, sfx, br, br2, cl) \
> static inline \
> -u32 __cmpxchg_##type##sfx(void *p, u32 old, u32 new) \
> +u32 __cmpxchg_##type##sfx(volatile void *p, u32 old, u32 new) \
> { \
> unsigned int prev, prev_mask, tmp, bitoff, off; \
> \
> @@ -399,7 +399,7 @@ __cmpxchg_u64_acquire(u64 *p, unsigned long old, unsigned long new)
> #endif
>
> static __always_inline unsigned long
> -__cmpxchg(void *ptr, unsigned long old, unsigned long new,
> +__cmpxchg(volatile void *ptr, unsigned long old, unsigned long new,
> unsigned int size)
> {
> switch (size) {
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: powerpc: Fix __cmpxchg() to take a volatile ptr again
2016-11-25 3:07 [PATCH] powerpc: Fix __cmpxchg() to take a volatile ptr again Michael Ellerman
2016-11-25 4:26 ` Pan Xinhui
@ 2016-11-28 12:15 ` Michael Ellerman
1 sibling, 0 replies; 3+ messages in thread
From: Michael Ellerman @ 2016-11-28 12:15 UTC (permalink / raw)
To: Michael Ellerman, linuxppc-dev; +Cc: peterz, xinhui.pan
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 882 bytes --]
On Fri, 2016-11-25 at 03:07:09 UTC, Michael Ellerman wrote:
> In commit d0563a1297e2 ("powerpc: Implement {cmp}xchg for u8 and u16")
> we removed the volatile from __cmpxchg().
>
> This is leading to warnings such as:
>
> drivers/gpu/drm/drm_lock.c: In function ‘drm_lock_take’:
> arch/powerpc/include/asm/cmpxchg.h:484:37: warning: passing argument 1
> of ‘__cmpxchg’ discards ‘volatile’ qualifier from pointer target
> (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \
>
> There doesn't seem to be consensus across architectures whether the
> argument is volatile or not, so at least for now put the volatile back.
>
> Fixes: d0563a1297e2 ("powerpc: Implement {cmp}xchg for u8 and u16")
> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Applied to powerpc next.
https://git.kernel.org/powerpc/c/da58b23cb976ab83a80d358102e139
cheers
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-11-28 12:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-25 3:07 [PATCH] powerpc: Fix __cmpxchg() to take a volatile ptr again Michael Ellerman
2016-11-25 4:26 ` Pan Xinhui
2016-11-28 12:15 ` Michael Ellerman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).