Symbol: INT3_INSN_SIZE
arch/x86/include/asm/text-patching.h
169
int3_emulate_push(regs, regs->ip - INT3_INSN_SIZE + CALL_INSN_SIZE);
arch/x86/kernel/alternative.c
2324
if (regs->ip - INT3_INSN_SIZE != selftest)
arch/x86/kernel/alternative.c
2851
ip = (void *) regs->ip - INT3_INSN_SIZE;
arch/x86/kernel/alternative.c
2968
text_poke(text_poke_addr(&text_poke_array.vec[i]), &int3, INT3_INSN_SIZE);
arch/x86/kernel/alternative.c
2982
if (len - INT3_INSN_SIZE > 0) {
arch/x86/kernel/alternative.c
2983
memcpy(old + INT3_INSN_SIZE,
arch/x86/kernel/alternative.c
2984
text_poke_addr(&text_poke_array.vec[i]) + INT3_INSN_SIZE,
arch/x86/kernel/alternative.c
2985
len - INT3_INSN_SIZE);
arch/x86/kernel/alternative.c
2993
text_poke(text_poke_addr(&text_poke_array.vec[i]) + INT3_INSN_SIZE,
arch/x86/kernel/alternative.c
2994
new + INT3_INSN_SIZE,
arch/x86/kernel/alternative.c
2995
len - INT3_INSN_SIZE);
arch/x86/kernel/alternative.c
3049
text_poke(text_poke_addr(&text_poke_array.vec[i]), &byte, INT3_INSN_SIZE);
arch/x86/kernel/kprobes/core.c
473
if (MAX_INSN_SIZE - len < INT3_INSN_SIZE)
arch/x86/kernel/kprobes/core.c
477
len += INT3_INSN_SIZE;
arch/x86/kernel/kprobes/core.c
501
regs->ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size;
arch/x86/kernel/kprobes/core.c
513
unsigned long func = regs->ip - INT3_INSN_SIZE + p->ainsn.size;
arch/x86/kernel/kprobes/core.c
522
unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size;
arch/x86/kernel/kprobes/core.c
531
unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size;
arch/x86/kernel/kprobes/core.c
539
unsigned long ip = regs->ip - INT3_INSN_SIZE + p->ainsn.size;
arch/x86/kernel/kprobes/core.c
598
int3_emulate_push(regs, regs->ip - INT3_INSN_SIZE + p->ainsn.size);
arch/x86/kernel/kprobes/core.c
929
regs->ip += (orig_ip - copy_ip) - INT3_INSN_SIZE;
arch/x86/kernel/kprobes/ftrace.c
43
instruction_pointer_set(regs, ip + INT3_INSN_SIZE);
arch/x86/kernel/kprobes/opt.c
191
regs->ip = (unsigned long)op->kp.addr + INT3_INSN_SIZE;
arch/x86/kernel/kprobes/opt.c
327
if (insn_jump_into_range(&insn, paddr + INT3_INSN_SIZE,
arch/x86/kernel/kprobes/opt.c
481
memcpy(op->optinsn.copied_insn, op->kp.addr + INT3_INSN_SIZE,
arch/x86/kernel/kprobes/opt.c
507
memcpy(new + INT3_INSN_SIZE,
arch/x86/kernel/kprobes/opt.c
509
JMP32_INSN_SIZE - INT3_INSN_SIZE);
arch/x86/kernel/kprobes/opt.c
511
text_poke(addr, new, INT3_INSN_SIZE);
arch/x86/kernel/kprobes/opt.c
513
text_poke(addr + INT3_INSN_SIZE,
arch/x86/kernel/kprobes/opt.c
514
new + INT3_INSN_SIZE,
arch/x86/kernel/kprobes/opt.c
515
JMP32_INSN_SIZE - INT3_INSN_SIZE);