diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2026-04-14 09:45:24 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2026-04-14 09:45:24 -0700 |
| commit | 15a1bccddccba6cab63fec1345fbd24102d9e0b8 (patch) | |
| tree | fb12649685cc4a8cb4fabce66b46a32d23539271 /include/linux | |
| parent | 5d0d3623303775d750e122a2542d1a26c8573d38 (diff) | |
| parent | c291cfac49a67debdad766eedc450ef613f41b2d (diff) | |
Merge tag 'core-entry-2026-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull entry code update from Thomas Gleixner:
"A trivial update for the entry code adding missing kernel
documentation for function arguments"
* tag 'core-entry-2026-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
entry: Add missing kernel-doc for arch_ptrace_report_syscall functions
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/entry-common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/entry-common.h b/include/linux/entry-common.h index f83ca0abf2cd..d223246401bc 100644 --- a/include/linux/entry-common.h +++ b/include/linux/entry-common.h @@ -48,6 +48,7 @@ /** * arch_ptrace_report_syscall_entry - Architecture specific ptrace_report_syscall_entry() wrapper + * @regs: Pointer to the register state at syscall entry * * Invoked from syscall_trace_enter() to wrap ptrace_report_syscall_entry(). * @@ -205,6 +206,8 @@ static __always_inline bool report_single_step(unsigned long work) /** * arch_ptrace_report_syscall_exit - Architecture specific ptrace_report_syscall_exit() + * @regs: Pointer to the register state at syscall exit + * @step: Indicates a single-step exit rather than a normal syscall exit * * This allows architecture specific ptrace_report_syscall_exit() * implementations. If not defined by the architecture this falls back to |
