Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+3
+3
include/linux/entry-common.h
··· 48 48 49 49 /** 50 50 * arch_ptrace_report_syscall_entry - Architecture specific ptrace_report_syscall_entry() wrapper 51 + * @regs: Pointer to the register state at syscall entry 51 52 * 52 53 * Invoked from syscall_trace_enter() to wrap ptrace_report_syscall_entry(). 53 54 * ··· 206 205 207 206 /** 208 207 * arch_ptrace_report_syscall_exit - Architecture specific ptrace_report_syscall_exit() 208 + * @regs: Pointer to the register state at syscall exit 209 + * @step: Indicates a single-step exit rather than a normal syscall exit 209 210 * 210 211 * This allows architecture specific ptrace_report_syscall_exit() 211 212 * implementations. If not defined by the architecture this falls back to