Symbol: jump_entry_code
arch/arm64/kernel/jump_label.c
17
void *addr = (void *)jump_entry_code(entry);
arch/arm64/kernel/jump_label.c
21
insn = aarch64_insn_gen_branch_imm(jump_entry_code(entry),
arch/csky/kernel/jump_label.c
17
unsigned long addr = jump_entry_code(entry);
arch/csky/kernel/jump_label.c
22
long offset = jump_entry_target(entry) - jump_entry_code(entry);
arch/loongarch/kernel/jump_label.c
15
void *addr = (void *)jump_entry_code(entry);
arch/loongarch/kernel/jump_label.c
18
insn = larch_insn_gen_b(jump_entry_code(entry), jump_entry_target(entry));
arch/openrisc/kernel/jump_label.c
17
void *addr = (void *)jump_entry_code(entry);
arch/openrisc/kernel/jump_label.c
23
offset = jump_entry_target(entry) - jump_entry_code(entry);
arch/parisc/kernel/jump_label.c
24
void *addr = (void *)jump_entry_code(entry);
arch/powerpc/kernel/jump_label.c
14
u32 *addr = (u32 *)jump_entry_code(entry);
arch/riscv/kernel/jump_label.c
21
void *addr = (void *)jump_entry_code(entry);
arch/riscv/kernel/jump_label.c
25
long offset = jump_entry_target(entry) - jump_entry_code(entry);
arch/s390/kernel/jump_label.c
23
insn->offset = (jump_entry_target(entry) - jump_entry_code(entry)) >> 1;
arch/s390/kernel/jump_label.c
30
insn->offset = (jump_entry_target(entry) - jump_entry_code(entry)) >> 1;
arch/s390/kernel/jump_label.c
36
unsigned char *ipc = (unsigned char *)jump_entry_code(entry);
arch/s390/kernel/jump_label.c
50
void *code = (void *)jump_entry_code(entry);
arch/x86/kernel/jump_label.c
101
text_poke_early((void *)jump_entry_code(entry), jlp.code, jlp.size);
arch/x86/kernel/jump_label.c
105
smp_text_poke_single((void *)jump_entry_code(entry), jlp.code, jlp.size, NULL);
arch/x86/kernel/jump_label.c
138
smp_text_poke_batch_add((void *)jump_entry_code(entry), jlp.code, jlp.size, NULL);
arch/x86/kernel/jump_label.c
24
insn_decode_kernel(&insn, (void *)jump_entry_code(entry));
arch/x86/kernel/jump_label.c
42
addr = (void *)jump_entry_code(entry);
arch/xtensa/kernel/jump_label.c
77
u32 d = (jump_entry_target(e) - (jump_entry_code(e) + 4));
arch/xtensa/kernel/jump_label.c
94
patch_text(jump_entry_code(e), &insn, JUMP_LABEL_NOP_SIZE);
kernel/jump_label.c
377
if (jump_entry_code(entry) <= (unsigned long)end &&
kernel/jump_label.c
378
jump_entry_code(entry) + jump_entry_size(entry) > (unsigned long)start)
kernel/jump_label.c
473
if (!kernel_text_address(jump_entry_code(entry))) {
kernel/jump_label.c
484
(void *)jump_entry_code(entry));
kernel/jump_label.c
54
if (jump_entry_code(jea) < jump_entry_code(jeb))
kernel/jump_label.c
547
in_init = init_section_contains((void *)jump_entry_code(iter), 1);
kernel/jump_label.c
57
if (jump_entry_code(jea) > jump_entry_code(jeb))
kernel/jump_label.c
708
in_init = within_module_init(jump_entry_code(iter), mod);