arch/arm64/kernel/probes/kprobes_trampoline.S

Source file repositories/reference/linux-study-clean/arch/arm64/kernel/probes/kprobes_trampoline.S

File Facts

System
Linux kernel
Corpus path
arch/arm64/kernel/probes/kprobes_trampoline.S
Extension
.S
Size
473 bytes
Lines
21
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: arch/arm64
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#include <linux/linkage.h>
#include <asm/asm-bug.h>
#include <asm/assembler.h>

	.text

SYM_CODE_START(__kretprobe_trampoline)
	/*
	 * Trigger a breakpoint exception. The PC will be adjusted by
	 * kretprobe_brk_handler(), and no subsequent instructions will
	 * be executed from the trampoline.
	 */
	brk #KRETPROBES_BRK_IMM
	ASM_BUG()
SYM_CODE_END(__kretprobe_trampoline)

Annotation

Implementation Notes