summaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2016-08-04 17:36:08 +0100
committerSasha Levin <alexander.levin@verizon.com>2016-08-19 23:08:36 -0400
commit403f056afd87471b1ef68c0519c8723afae4babb (patch)
tree66b7e1c022245f4c4d20a448eab0dc2fb4cfe7a0 /block
parenta2036fb1a801d2b75ddc1d407b97519f9cac5a0b (diff)
metag: Fix __cmpxchg_u32 asm constraint for CMP
[ Upstream commit 6154c187b97ee7513046bb4eb317a89f738f13ef ] The LNKGET based atomic sequence in __cmpxchg_u32 has slightly incorrect constraints for the return value which under certain circumstances can allow an address unit register to be used as the first operand of a CMP instruction. This isn't a valid instruction however as the encodings only allow a data unit to be specified. This would result in an assembler error like the following: Error: failed to assemble instruction: "CMP A0.2,D0Ar6" Fix by changing the constraint from "=&da" (assigned, early clobbered, data or address unit register) to "=&d" (data unit register only). The constraint for the second operand, "bd" (an op2 register where op1 is a data unit register and the instruction supports O2R) is already correct assuming the first operand is a data unit register. Other cases of CMP in inline asm have had their constraints checked, and appear to all be fine. Fixes: 6006c0d8ce94 ("metag: Atomics, locks and bitops") Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: linux-metag@vger.kernel.org Cc: <stable@vger.kernel.org> # 3.9.x- Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Diffstat (limited to 'block')
0 files changed, 0 insertions, 0 deletions