Merge branch 'fix/asoc' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / include / asm / jump_label.h
bloba32b18ce6eadae461d712a6c49b172387cdbbfd1
1 #ifndef _ASM_X86_JUMP_LABEL_H
2 #define _ASM_X86_JUMP_LABEL_H
4 #ifdef __KERNEL__
6 #include <linux/types.h>
7 #include <asm/nops.h>
8 #include <asm/asm.h>
10 #define JUMP_LABEL_NOP_SIZE 5
12 #define JUMP_LABEL_INITIAL_NOP ".byte 0xe9 \n\t .long 0\n\t"
14 static __always_inline bool arch_static_branch(struct jump_label_key *key)
16 asm goto("1:"
17 JUMP_LABEL_INITIAL_NOP
18 ".pushsection __jump_table, \"aw\" \n\t"
19 _ASM_ALIGN "\n\t"
20 _ASM_PTR "1b, %l[l_yes], %c0 \n\t"
21 ".popsection \n\t"
22 : : "i" (key) : : l_yes);
23 return false;
24 l_yes:
25 return true;
28 #endif /* __KERNEL__ */
30 #ifdef CONFIG_X86_64
31 typedef u64 jump_label_t;
32 #else
33 typedef u32 jump_label_t;
34 #endif
36 struct jump_entry {
37 jump_label_t code;
38 jump_label_t target;
39 jump_label_t key;
42 #endif