summaryrefslogtreecommitdiffstats
path: root/include/linux/tracehook.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/tracehook.h')
-rw-r--r--include/linux/tracehook.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h
index 40b0b4c1bf7b..df20f8bdbfa3 100644
--- a/include/linux/tracehook.h
+++ b/include/linux/tracehook.h
@@ -83,8 +83,8 @@ static inline int ptrace_report_syscall(struct pt_regs *regs)
83 * tracehook_report_syscall_entry - task is about to attempt a system call 83 * tracehook_report_syscall_entry - task is about to attempt a system call
84 * @regs: user register state of current task 84 * @regs: user register state of current task
85 * 85 *
86 * This will be called if %TIF_SYSCALL_TRACE has been set, when the 86 * This will be called if %TIF_SYSCALL_TRACE or %TIF_SYSCALL_EMU have been set,
87 * current task has just entered the kernel for a system call. 87 * when the current task has just entered the kernel for a system call.
88 * Full user register state is available here. Changing the values 88 * Full user register state is available here. Changing the values
89 * in @regs can affect the system call number and arguments to be tried. 89 * in @regs can affect the system call number and arguments to be tried.
90 * It is safe to block here, preventing the system call from beginning. 90 * It is safe to block here, preventing the system call from beginning.