]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
nios2: fix syscall restart checks
authorAl Viro <viro@zeniv.linux.org.uk>
Mon, 8 Aug 2022 15:08:48 +0000 (16:08 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Aug 2022 09:38:03 +0000 (11:38 +0200)
commitf20bc59ccf9e4502375b4eb90268c968341a86e4
tree7d06f25db28a77d695b76cdee188974fea184f3d
parent8d0118a027e3c9ab39e31b1fafdb7103922ef3c3
nios2: fix syscall restart checks

commit 2d631bd58fe0ea3e3350212e23c9aba1fb606514 upstream.

sys_foo() returns -512 (aka -ERESTARTSYS) => do_signal() sees
512 in r2 and 1 in r1.

sys_foo() returns 512 => do_signal() sees 512 in r2 and 0 in r1.

The former is restart-worthy; the latter obviously isn't.

Fixes: b53e906d255d ("nios2: Signal handling support")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/nios2/kernel/signal.c