arch/arm64/include/asm/kvm_mmu.h
Source file repositories/reference/linux-study-clean/arch/arm64/include/asm/kvm_mmu.h
File Facts
- System
- Linux kernel
- Corpus path
arch/arm64/include/asm/kvm_mmu.h- Extension
.h- Size
- 12490 bytes
- Lines
- 405
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
asm/page.hasm/memory.hasm/mmu.hasm/cpufeature.hasm/alternative.hlinux/pgtable.hasm/pgalloc.hasm/cache.hasm/cacheflush.hasm/mmu_context.hasm/kvm_emulate.hasm/kvm_host.hasm/kvm_nested.hasm/kvm_pgtable.hasm/stage2_pgtable.h
Detected Declarations
struct kvmfunction kvm_update_va_maskfunction vcpu_has_cache_enabledfunction __clean_dcache_guest_pagefunction __invalidate_icache_max_rangefunction __invalidate_icache_guest_pagefunction kvm_get_vmid_bitsfunction kvm_read_guest_lockfunction kvm_write_guest_lockfunction isfunction __load_stage2function get_vmidfunction kvm_s2_mmu_validfunction kvm_is_nested_s2_mmufunction kvm_fault_lockfunction kvm_fault_unlockfunction addressfunction kvm_s2_ptdump_create_debugfs
Annotated Snippet
static inline void kvm_s2_ptdump_create_debugfs(struct kvm *kvm) {}
static inline void kvm_nested_s2_ptdump_create_debugfs(struct kvm_s2_mmu *mmu) {}
static inline void kvm_nested_s2_ptdump_remove_debugfs(struct kvm_s2_mmu *mmu) {}
#endif /* CONFIG_PTDUMP_STAGE2_DEBUGFS */
#endif /* __ASSEMBLER__ */
#endif /* __ARM64_KVM_MMU_H__ */
Annotation
- Immediate include surface: `asm/page.h`, `asm/memory.h`, `asm/mmu.h`, `asm/cpufeature.h`, `asm/alternative.h`, `linux/pgtable.h`, `asm/pgalloc.h`, `asm/cache.h`.
- Detected declarations: `struct kvm`, `function kvm_update_va_mask`, `function vcpu_has_cache_enabled`, `function __clean_dcache_guest_page`, `function __invalidate_icache_max_range`, `function __invalidate_icache_guest_page`, `function kvm_get_vmid_bits`, `function kvm_read_guest_lock`, `function kvm_write_guest_lock`, `function is`.
- Atlas domain: Architecture Layer / arch/arm64.
- Implementation status: source implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
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.