]> git.baikalelectronics.ru Git - kernel.git/commit
nios2: add force_successful_syscall_return()
authorAl Viro <viro@zeniv.linux.org.uk>
Mon, 8 Aug 2022 15:09:45 +0000 (16:09 +0100)
committerDinh Nguyen <dinguyen@kernel.org>
Mon, 15 Aug 2022 16:25:32 +0000 (11:25 -0500)
commit1177dcfdc27207c5bcf3cbb5cefeb8ebe705a44b
tree1b0b0486639eba2a2233205735ba09681a8864e0
parent0885177a2b0a6008ebb0794e482062344d1500d1
nios2: add force_successful_syscall_return()

If we use the ancient SysV syscall ABI, we'd better have tell the
kernel how to claim that a negative return value is a success.
Use ->orig_r2 for that - it's inaccessible via ptrace, so it's
a fair game for changes and it's normally[*] non-negative on return
from syscall.  Set to -1; syscall is not going to be restart-worthy
by definition, so we won't interfere with that use either.

[*] the only exception is rt_sigreturn(), where we skip the entire
messing with r1/r2 anyway.

Fixes: 8a05c485086f ("nios2: Exception handling")
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
arch/nios2/include/asm/ptrace.h
arch/nios2/kernel/entry.S