arm64: syscall: Expand the comment about ptrace and syscall(-1)
authorWill Deacon <will@kernel.org>
Fri, 3 Jul 2020 08:41:24 +0000 (09:41 +0100)
committerWill Deacon <will@kernel.org>
Thu, 16 Jul 2020 10:41:58 +0000 (11:41 +0100)
commit139dbe5d8ed383cbd1ada56c78dbbbd35bf6a9d3
tree7ab72588884da81954b1f9f882795c80dd556cd6
parent59ee987ea47caff8c1e7ba4b89932c6900a35d0c
arm64: syscall: Expand the comment about ptrace and syscall(-1)

If a task executes syscall(-1), we intercept this early and force x0 to
be -ENOSYS so that we don't need to distinguish this scenario from one
where the scno is -1 because a tracer wants to skip the system call
using ptrace. With the return value set, the return path is the same as
the skip case.

Although there is a one-line comment noting this in el0_svc_common(), it
misses out most of the detail. Expand the comment to describe a bit more
about what is going on.

Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Keno Fischer <keno@juliacomputing.com>
Cc: Luis Machado <luis.machado@linaro.org>
Signed-off-by: Will Deacon <will@kernel.org>
arch/arm64/kernel/syscall.c