x86/sev: Mark snp_abort() noreturn
authorBorislav Petkov <bp@suse.de>
Wed, 24 Aug 2022 15:13:26 +0000 (17:13 +0200)
committerBorislav Petkov <bp@suse.de>
Thu, 25 Aug 2022 13:54:03 +0000 (15:54 +0200)
commitc93c296fff6b369a7115916145047c8a3db6e27f
treeffaf8154c47ead2d9ac672666f59418cc37c8a06
parentcdaa0a407f1acd3a44861e3aea6e3c7349e668f1
x86/sev: Mark snp_abort() noreturn

Mark both the function prototype and definition as noreturn in order to
prevent the compiler from doing transformations which confuse objtool
like so:

  vmlinux.o: warning: objtool: sme_enable+0x71: unreachable instruction

This triggers with gcc-12.

Add it and sev_es_terminate() to the objtool noreturn tracking array
too. Sort it while at it.

Suggested-by: Michael Matz <matz@suse.de>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20220824152420.20547-1-bp@alien8.de
arch/x86/include/asm/sev.h
arch/x86/kernel/sev.c
tools/objtool/check.c