Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1355157
| From | Mans Rullgard <mans@mansr.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] avr32: fix asm operand constraint in cmpxchg() |
| Date | 2016-03-10 15:30 +0100 |
| Message-ID | <rb9Lc-89a-15@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
If the 'old' operand to cmpxchg() is a constant wider than 21 bits, linking fails with a "relocation truncated to fit: R_AVR32_21S" error. Fix this by replacing the "i" constraint with "Ks21" which makes the compiler use a temporary register for out of range constants. Signed-off-by: Mans Rullgard <mans@mansr.com> --- This fixes link errors in linux-next with CONFIG_AIO_THREAD enabled. --- arch/avr32/include/asm/cmpxchg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/avr32/include/asm/cmpxchg.h b/arch/avr32/include/asm/cmpxchg.h index 366bbeaeb405..572739b4c4b4 100644 --- a/arch/avr32/include/asm/cmpxchg.h +++ b/arch/avr32/include/asm/cmpxchg.h @@ -57,7 +57,7 @@ static inline unsigned long __cmpxchg_u32(volatile int *m, unsigned long old, " brne 1b\n" "2:\n" : [ret] "=&r"(ret), [m] "=m"(*m) - : "m"(m), [old] "ir"(old), [new] "r"(new) + : "m"(m), [old] "Ks21r"(old), [new] "r"(new) : "memory", "cc"); return ret; } -- 2.7.2
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] avr32: fix asm operand constraint in cmpxchg() Mans Rullgard <mans@mansr.com> - 2016-03-10 15:30 +0100 Re: [PATCH] avr32: fix asm operand constraint in cmpxchg() Andy Shevchenko <andy.shevchenko@gmail.com> - 2016-03-10 16:30 +0100 Re: [PATCH] avr32: fix asm operand constraint in cmpxchg() Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2016-03-10 18:50 +0100
csiph-web