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.

unwind: Shorten lines

There are some exceptionally long lines that cause ugly wrapping.

Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Acked-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Link: https://patch.msgid.link/20250924080118.545274393@infradead.org

+14 -4
+14 -4
include/linux/unwind_deferred.h
··· 8 8 9 9 struct unwind_work; 10 10 11 - typedef void (*unwind_callback_t)(struct unwind_work *work, struct unwind_stacktrace *trace, u64 cookie); 11 + typedef void (*unwind_callback_t)(struct unwind_work *work, 12 + struct unwind_stacktrace *trace, 13 + u64 cookie); 12 14 13 15 struct unwind_work { 14 16 struct list_head list; ··· 70 68 static inline void unwind_task_init(struct task_struct *task) {} 71 69 static inline void unwind_task_free(struct task_struct *task) {} 72 70 73 - static inline int unwind_user_faultable(struct unwind_stacktrace *trace) { return -ENOSYS; } 74 - static inline int unwind_deferred_init(struct unwind_work *work, unwind_callback_t func) { return -ENOSYS; } 75 - static inline int unwind_deferred_request(struct unwind_work *work, u64 *timestamp) { return -ENOSYS; } 71 + static inline int unwind_user_faultable(struct unwind_stacktrace *trace) 72 + { return -ENOSYS; } 73 + 74 + static inline int 75 + unwind_deferred_init(struct unwind_work *work, unwind_callback_t func) 76 + { return -ENOSYS; } 77 + 78 + static inline int 79 + unwind_deferred_request(struct unwind_work *work, u64 *timestamp) 80 + { return -ENOSYS; } 81 + 76 82 static inline void unwind_deferred_cancel(struct unwind_work *work) {} 77 83 78 84 static inline void unwind_deferred_task_exit(struct task_struct *task) {}