1 #ifndef _ASM_X86_JUMP_LABEL_H
2 #define _ASM_X86_JUMP_LABEL_H
6 #include <linux/stringify.h>
7 #include <linux/types.h>
11 #define JUMP_LABEL_NOP_SIZE 5
14 # define STATIC_KEY_INIT_NOP P6_NOP5_ATOMIC
16 # define STATIC_KEY_INIT_NOP GENERIC_NOP5_ATOMIC
19 static __always_inline
bool arch_static_branch(struct static_key
*key
)
21 asm_volatile_goto("1:"
22 ".byte " __stringify(STATIC_KEY_INIT_NOP
) "\n\t"
23 ".pushsection __jump_table, \"aw\" \n\t"
25 _ASM_PTR
"1b, %l[l_yes], %c0 \n\t"
27 : : "i" (key
) : : l_yes
);
33 #endif /* __KERNEL__ */
36 typedef u64 jump_label_t
;
38 typedef u32 jump_label_t
;