Lines Matching +full:active +full:- +full:semi
1 // SPDX-License-Identifier: GPL-2.0
10 * the most accurate unwinder being the currently active one.
30 .name = "stack-reader",
43 * "unwinder_list" is a linked-list of all available unwinders, sorted
59 * select_unwinder - Select the best registered stack unwinder.
92 return -EBUSY; in unwinder_enqueue()
94 if (o->rating >= ops->rating) in unwinder_enqueue()
97 list_add(&ops->list, entry); in unwinder_enqueue()
103 * unwinder_register - Used to install new stack unwinder
109 * Returns -EBUSY if registration fails, zero otherwise.
146 * Hopefully this will give us a semi-reliable stacktrace so we in unwind_stack()
147 * can diagnose why curr_unwinder->dump() faulted. in unwind_stack()
154 list_del(&curr_unwinder->list); in unwind_stack()
163 curr_unwinder->dump(task, regs, sp, ops, data); in unwind_stack()