]> git.baikalelectronics.ru Git - kernel.git/commit
metag/usercopy: Set flags before ADDZ
authorJames Hogan <james.hogan@imgtec.com>
Tue, 4 Apr 2017 10:43:26 +0000 (11:43 +0100)
committerJames Hogan <james.hogan@imgtec.com>
Wed, 5 Apr 2017 14:25:06 +0000 (15:25 +0100)
commit3dc9fcc78a93a2344d98048ea2968122bb7e7559
tree72a3184830909c77728191139d5aca764adafd70
parented67b6802fc24a433a14740f55a4611156bd21c7
metag/usercopy: Set flags before ADDZ

The fixup code for the copy_to_user rapf loops reads TXStatus.LSM_STEP
to decide how far to rewind the source pointer. There is a special case
for the last execution of an MGETL/MGETD, since it leaves LSM_STEP=0
even though the number of MGETLs/MGETDs attempted was 4. This uses ADDZ
which is conditional upon the Z condition flag, but the AND instruction
which masked the TXStatus.LSM_STEP field didn't set the condition flags
based on the result.

Fix that now by using ANDS which does set the flags, and also marking
the condition codes as clobbered by the inline assembly.

Fixes: 5ac8938ebf27 ("metag: Memory handling")
Signed-off-by: James Hogan <james.hogan@imgtec.com>
Cc: linux-metag@vger.kernel.org
Cc: stable@vger.kernel.org
arch/metag/lib/usercopy.c