diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2022-01-27 19:04:27 +0100 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2022-03-10 20:37:13 +0100 |
commit | c145137dc990fd67b52fbc52faae5ba46f168cca (patch) | |
tree | 86b4317a0e5aeaa6ca3e1dfc1d778ee57bf62acc /arch | |
parent | ptrace: Remove arch_syscall_{enter,exit}_tracehook (diff) | |
download | linux-c145137dc990fd67b52fbc52faae5ba46f168cca.tar.xz linux-c145137dc990fd67b52fbc52faae5ba46f168cca.zip |
ptrace: Remove tracehook_signal_handler
The two line function tracehook_signal_handler is only called from
signal_delivered. Expand it inline in signal_delivered and remove it.
Just to make it easier to understand what is going on.
Reviewed-by: Kees Cook <keescook@chromium.org>
Link: https://lkml.kernel.org/r/20220309162454.123006-5-ebiederm@xmission.com
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index a517a949eb1d..6382520ef0a5 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -219,7 +219,6 @@ config TRACE_IRQFLAGS_SUPPORT # CORE_DUMP_USE_REGSET #define'd in linux/elf.h # TIF_SYSCALL_TRACE calls ptrace_report_syscall_{entry,exit} # TIF_NOTIFY_RESUME calls tracehook_notify_resume() -# signal delivery calls tracehook_signal_handler() # config HAVE_ARCH_TRACEHOOK bool |