06697ca69b
The objtool merge in commit6f612579be
("Merge tag 'objtool-core ...") generated a semantic conflict that was not resolved. The btrfs_assertfail() entry was removed from the noreturn list in commitb831306b3b
("btrfs: print assertion failure report and stack trace from the same line") because btrfs_assertfail() was changed from a noreturn function into a macro. The noreturn list was then moved from check.c to noreturns.h in commit6245ce4ab6
("objtool: Move noreturn function list to separate file"), and should be removed from that post-merge as well. Do it explicitly. Cc: David Sterba <dsterba@suse.com> Cc: Josh Poimboeuf <jpoimboe@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
* This is a (sorted!) list of all known __noreturn functions in the kernel.
|
|
* It's needed for objtool to properly reverse-engineer the control flow graph.
|
|
*
|
|
* Yes, this is unfortunate. A better solution is in the works.
|
|
*/
|
|
NORETURN(__invalid_creds)
|
|
NORETURN(__kunit_abort)
|
|
NORETURN(__module_put_and_kthread_exit)
|
|
NORETURN(__reiserfs_panic)
|
|
NORETURN(__stack_chk_fail)
|
|
NORETURN(__ubsan_handle_builtin_unreachable)
|
|
NORETURN(arch_call_rest_init)
|
|
NORETURN(arch_cpu_idle_dead)
|
|
NORETURN(cpu_bringup_and_idle)
|
|
NORETURN(cpu_startup_entry)
|
|
NORETURN(do_exit)
|
|
NORETURN(do_group_exit)
|
|
NORETURN(do_task_dead)
|
|
NORETURN(ex_handler_msr_mce)
|
|
NORETURN(fortify_panic)
|
|
NORETURN(hlt_play_dead)
|
|
NORETURN(hv_ghcb_terminate)
|
|
NORETURN(kthread_complete_and_exit)
|
|
NORETURN(kthread_exit)
|
|
NORETURN(kunit_try_catch_throw)
|
|
NORETURN(machine_real_restart)
|
|
NORETURN(make_task_dead)
|
|
NORETURN(mpt_halt_firmware)
|
|
NORETURN(nmi_panic_self_stop)
|
|
NORETURN(panic)
|
|
NORETURN(panic_smp_self_stop)
|
|
NORETURN(rest_init)
|
|
NORETURN(rewind_stack_and_make_dead)
|
|
NORETURN(sev_es_terminate)
|
|
NORETURN(snp_abort)
|
|
NORETURN(start_kernel)
|
|
NORETURN(stop_this_cpu)
|
|
NORETURN(usercopy_abort)
|
|
NORETURN(x86_64_start_kernel)
|
|
NORETURN(x86_64_start_reservations)
|
|
NORETURN(xen_cpu_bringup_again)
|
|
NORETURN(xen_start_kernel)
|