Skip to content
Snippets Groups Projects
Commit ae02ae16 authored by Juergen Gross's avatar Juergen Gross Committed by Borislav Petkov (AMD)
Browse files

x86/asm: Make serialize() always_inline

In order to allow serialize() to be used from noinstr code, make it
__always_inline.

Fixes: 0ef8047b ("x86/static-call: provide a way to do very early static-call updates")
Closes: https://lore.kernel.org/oe-kbuild-all/202412181756.aJvzih2K-lkp@intel.com/


Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarJuergen Gross <jgross@suse.com>
Signed-off-by: default avatarBorislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/20241218100918.22167-1-jgross@suse.com
parent de31b3cd
No related branches found
No related tags found
No related merge requests found
...@@ -217,7 +217,7 @@ fail: ...@@ -217,7 +217,7 @@ fail:
#define nop() asm volatile ("nop") #define nop() asm volatile ("nop")
static inline void serialize(void) static __always_inline void serialize(void)
{ {
/* Instruction opcode for SERIALIZE; supported in binutils >= 2.35. */ /* Instruction opcode for SERIALIZE; supported in binutils >= 2.35. */
asm volatile(".byte 0xf, 0x1, 0xe8" ::: "memory"); asm volatile(".byte 0xf, 0x1, 0xe8" ::: "memory");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment