arch/x86/include/asm/ibt.h
Source file repositories/reference/linux-study-clean/arch/x86/include/asm/ibt.h
File Facts
- System
- Linux kernel
- Corpus path
arch/x86/include/asm/ibt.h- Extension
.h- Size
- 2640 bytes
- Lines
- 118
- Domain
- Architecture Layer
- Bucket
- arch/x86
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
Dependency Surface
linux/types.h
Detected Declarations
function apply_seal_endbrfunction gen_endbr_poisonfunction __is_endbrfunction is_endbrfunction ibt_savefunction ibt_restore
Annotated Snippet
static inline bool is_endbr(u32 *val) { return false; }
static inline u64 ibt_save(bool disable) { return 0; }
static inline void ibt_restore(u64 save) { }
#else /* __ASSEMBLER__ */
#define ENDBR
#endif /* __ASSEMBLER__ */
#endif /* CONFIG_X86_KERNEL_IBT */
#define ENDBR_INSN_SIZE (4*HAS_KERNEL_IBT)
#endif /* _ASM_X86_IBT_H */
Annotation
- Immediate include surface: `linux/types.h`.
- Detected declarations: `function apply_seal_endbr`, `function gen_endbr_poison`, `function __is_endbr`, `function is_endbr`, `function ibt_save`, `function ibt_restore`.
- Atlas domain: Architecture Layer / arch/x86.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.