arch/arm64/include/asm/probes.h

Source file repositories/reference/linux-study-clean/arch/arm64/include/asm/probes.h

File Facts

System
Linux kernel
Corpus path
arch/arm64/include/asm/probes.h
Extension
.h
Size
549 bytes
Lines
28
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

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

struct arch_probe_insn {
	probes_handler_t *handler;
};
#ifdef CONFIG_KPROBES
typedef __le32 kprobe_opcode_t;
struct arch_specific_insn {
	struct arch_probe_insn api;
	kprobe_opcode_t *xol_insn;
	/* restore address after step xol */
	unsigned long xol_restore;
};
#endif

#endif

Annotation

Implementation Notes