locking/atomic, arch/tile: Fix tilepro build
The tilepro change wasn't ever compiled it seems (the 0day built bot
also doesn't have a toolchain for it).
Make it work.
The thing that makes the patch bigger than desired is namespace
collision with the C11 __atomic builtin functions. So rename the
tilepro functions to __atomic32.
Reported-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Thomas Gleixner <tglx@linutronix.de>
Fixes: 1af5de9af1
("locking/atomic, arch/tile: Implement atomic{,64}_fetch_{add,sub,and,or,xor}()")
Link: http://lkml.kernel.org/r/20160622091649.GB30154@twins.programming.kicks-ass.net
Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:

committed by
Ingo Molnar

parent
86a664d58f
commit
b7271b9f3e
@@ -61,13 +61,13 @@ static inline int *__atomic_setup(volatile void *v)
|
||||
|
||||
int _atomic_xchg(int *v, int n)
|
||||
{
|
||||
return __atomic_xchg(v, __atomic_setup(v), n).val;
|
||||
return __atomic32_xchg(v, __atomic_setup(v), n).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_xchg);
|
||||
|
||||
int _atomic_xchg_add(int *v, int i)
|
||||
{
|
||||
return __atomic_xchg_add(v, __atomic_setup(v), i).val;
|
||||
return __atomic32_xchg_add(v, __atomic_setup(v), i).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_xchg_add);
|
||||
|
||||
@@ -78,37 +78,37 @@ int _atomic_xchg_add_unless(int *v, int a, int u)
|
||||
* to use the first argument consistently as the "old value"
|
||||
* in the assembly, as is done for _atomic_cmpxchg().
|
||||
*/
|
||||
return __atomic_xchg_add_unless(v, __atomic_setup(v), u, a).val;
|
||||
return __atomic32_xchg_add_unless(v, __atomic_setup(v), u, a).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_xchg_add_unless);
|
||||
|
||||
int _atomic_cmpxchg(int *v, int o, int n)
|
||||
{
|
||||
return __atomic_cmpxchg(v, __atomic_setup(v), o, n).val;
|
||||
return __atomic32_cmpxchg(v, __atomic_setup(v), o, n).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_cmpxchg);
|
||||
|
||||
unsigned long _atomic_fetch_or(volatile unsigned long *p, unsigned long mask)
|
||||
{
|
||||
return __atomic_fetch_or((int *)p, __atomic_setup(p), mask).val;
|
||||
return __atomic32_fetch_or((int *)p, __atomic_setup(p), mask).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_fetch_or);
|
||||
|
||||
unsigned long _atomic_fetch_and(volatile unsigned long *p, unsigned long mask)
|
||||
{
|
||||
return __atomic_fetch_and((int *)p, __atomic_setup(p), mask).val;
|
||||
return __atomic32_fetch_and((int *)p, __atomic_setup(p), mask).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_fetch_and);
|
||||
|
||||
unsigned long _atomic_fetch_andn(volatile unsigned long *p, unsigned long mask)
|
||||
{
|
||||
return __atomic_fetch_andn((int *)p, __atomic_setup(p), mask).val;
|
||||
return __atomic32_fetch_andn((int *)p, __atomic_setup(p), mask).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_fetch_andn);
|
||||
|
||||
unsigned long _atomic_fetch_xor(volatile unsigned long *p, unsigned long mask)
|
||||
{
|
||||
return __atomic_fetch_xor((int *)p, __atomic_setup(p), mask).val;
|
||||
return __atomic32_fetch_xor((int *)p, __atomic_setup(p), mask).val;
|
||||
}
|
||||
EXPORT_SYMBOL(_atomic_fetch_xor);
|
||||
|
||||
|
Reference in New Issue
Block a user