Skip to content

Commit b4ae43b

Browse files
tangyoulingjpoimboe
authored andcommitted
objtool: Add bch2_trans_unlocked_or_in_restart_error() to bcachefs noreturns
Fix the following objtool warning during build time: fs/bcachefs/btree_cache.o: warning: objtool: btree_node_lock.constprop.0() falls through to next function bch2_recalc_btree_reserve() fs/bcachefs/btree_update.o: warning: objtool: bch2_trans_update_get_key_cache() falls through to next function need_whiteout_for_snapshot() bch2_trans_unlocked_or_in_restart_error() is an Obviously Correct (tm) panic() wrapper, add it to the list of known noreturns. Fixes: b318882 ("bcachefs: bch2_trans_verify_not_unlocked_or_in_restart()") Reported-by: k2ci <kernel-bot@kylinos.cn> Signed-off-by: Youling Tang <tangyouling@kylinos.cn> Reviewed-by: Kent Overstreet <kent.overstreet@linux.dev> Link: https://lore.kernel.org/r/20250218064230.219997-1-youling.tang@linux.dev Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
1 parent 73cfc53 commit b4ae43b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/objtool/noreturns.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ NORETURN(__x64_sys_exit_group)
1919
NORETURN(arch_cpu_idle_dead)
2020
NORETURN(bch2_trans_in_restart_error)
2121
NORETURN(bch2_trans_restart_error)
22-
NORETURN(bch2_trans_unlocked_error)
22+
NORETURN(bch2_trans_unlocked_or_in_restart_error)
2323
NORETURN(cpu_bringup_and_idle)
2424
NORETURN(cpu_startup_entry)
2525
NORETURN(do_exit)

0 commit comments

Comments
 (0)