mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
9142be9e64
The direct-call syscall dispatch function doesn't know that the exit()
and exit_group() syscall handlers don't return, so the call sites aren't
optimized accordingly.
Fix that by marking the exit syscall declarations __noreturn.
Fixes the following warnings:
vmlinux.o: warning: objtool: x64_sys_call+0x2804: __x64_sys_exit() is missing a __noreturn annotation
vmlinux.o: warning: objtool: ia32_sys_call+0x29b6: __ia32_sys_exit_group() is missing a __noreturn annotation
Fixes: 1e3ad78334
("x86/syscall: Don't force use of indirect calls for system calls")
Closes: https://lkml.kernel.org/lkml/6dba9b32-db2c-4e6d-9500-7a08852f17a3@paulmck-laptop
Reported-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Tested-by: Paul E. McKenney <paulmck@kernel.org>
Link: https://lore.kernel.org/r/5d8882bc077d8eadcc7fd1740b56dfb781f12288.1719381528.git.jpoimboe@kernel.org
51 lines
1.4 KiB
C
51 lines
1.4 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(__fortify_panic)
|
|
NORETURN(__ia32_sys_exit)
|
|
NORETURN(__ia32_sys_exit_group)
|
|
NORETURN(__kunit_abort)
|
|
NORETURN(__module_put_and_kthread_exit)
|
|
NORETURN(__reiserfs_panic)
|
|
NORETURN(__stack_chk_fail)
|
|
NORETURN(__tdx_hypercall_failed)
|
|
NORETURN(__ubsan_handle_builtin_unreachable)
|
|
NORETURN(__x64_sys_exit)
|
|
NORETURN(__x64_sys_exit_group)
|
|
NORETURN(arch_cpu_idle_dead)
|
|
NORETURN(bch2_trans_in_restart_error)
|
|
NORETURN(bch2_trans_restart_error)
|
|
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(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)
|