mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 19:43:40 +02:00
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
This commit is contained in:
parent
ef1ea98c8f
commit
c31b9d2f58
|
|
@ -8,7 +8,9 @@
|
|||
|
||||
struct unwind_work;
|
||||
|
||||
typedef void (*unwind_callback_t)(struct unwind_work *work, struct unwind_stacktrace *trace, u64 cookie);
|
||||
typedef void (*unwind_callback_t)(struct unwind_work *work,
|
||||
struct unwind_stacktrace *trace,
|
||||
u64 cookie);
|
||||
|
||||
struct unwind_work {
|
||||
struct list_head list;
|
||||
|
|
@ -68,9 +70,17 @@ static __always_inline void unwind_reset_info(void)
|
|||
static inline void unwind_task_init(struct task_struct *task) {}
|
||||
static inline void unwind_task_free(struct task_struct *task) {}
|
||||
|
||||
static inline int unwind_user_faultable(struct unwind_stacktrace *trace) { return -ENOSYS; }
|
||||
static inline int unwind_deferred_init(struct unwind_work *work, unwind_callback_t func) { return -ENOSYS; }
|
||||
static inline int unwind_deferred_request(struct unwind_work *work, u64 *timestamp) { return -ENOSYS; }
|
||||
static inline int unwind_user_faultable(struct unwind_stacktrace *trace)
|
||||
{ return -ENOSYS; }
|
||||
|
||||
static inline int
|
||||
unwind_deferred_init(struct unwind_work *work, unwind_callback_t func)
|
||||
{ return -ENOSYS; }
|
||||
|
||||
static inline int
|
||||
unwind_deferred_request(struct unwind_work *work, u64 *timestamp)
|
||||
{ return -ENOSYS; }
|
||||
|
||||
static inline void unwind_deferred_cancel(struct unwind_work *work) {}
|
||||
|
||||
static inline void unwind_deferred_task_exit(struct task_struct *task) {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user