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.

entry: Clean up header

Clean up the include ordering, kernel-doc and other trivialities before
making further changes.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Link: https://patch.msgid.link/20251027084306.590338411@linutronix.de

authored by

Thomas Gleixner and committed by
Ingo Molnar
5204be16 faba9d25

+6 -4
+4 -4
include/linux/entry-common.h
··· 3 3 #define __LINUX_ENTRYCOMMON_H 4 4 5 5 #include <linux/irq-entry-common.h> 6 + #include <linux/livepatch.h> 6 7 #include <linux/ptrace.h> 8 + #include <linux/resume_user_mode.h> 7 9 #include <linux/seccomp.h> 8 10 #include <linux/sched.h> 9 - #include <linux/livepatch.h> 10 - #include <linux/resume_user_mode.h> 11 11 12 12 #include <asm/entry-common.h> 13 13 #include <asm/syscall.h> ··· 37 37 SYSCALL_WORK_SYSCALL_AUDIT | \ 38 38 SYSCALL_WORK_SYSCALL_USER_DISPATCH | \ 39 39 ARCH_SYSCALL_WORK_ENTER) 40 + 40 41 #define SYSCALL_WORK_EXIT (SYSCALL_WORK_SYSCALL_TRACEPOINT | \ 41 42 SYSCALL_WORK_SYSCALL_TRACE | \ 42 43 SYSCALL_WORK_SYSCALL_AUDIT | \ ··· 62 61 */ 63 62 void syscall_enter_from_user_mode_prepare(struct pt_regs *regs); 64 63 65 - long syscall_trace_enter(struct pt_regs *regs, long syscall, 66 - unsigned long work); 64 + long syscall_trace_enter(struct pt_regs *regs, long syscall, unsigned long work); 67 65 68 66 /** 69 67 * syscall_enter_from_user_mode_work - Check and handle work before invoking
+2
include/linux/irq-entry-common.h
··· 68 68 69 69 /** 70 70 * enter_from_user_mode - Establish state when coming from user mode 71 + * @regs: Pointer to currents pt_regs 71 72 * 72 73 * Syscall/interrupt entry disables interrupts, but user mode is traced as 73 74 * interrupts enabled. Also with NO_HZ_FULL RCU might be idle. ··· 358 357 * Conditional reschedule with additional sanity checks. 359 358 */ 360 359 void raw_irqentry_exit_cond_resched(void); 360 + 361 361 #ifdef CONFIG_PREEMPT_DYNAMIC 362 362 #if defined(CONFIG_HAVE_PREEMPT_DYNAMIC_CALL) 363 363 #define irqentry_exit_cond_resched_dynamic_enabled raw_irqentry_exit_cond_resched