include/xen/xen-ops.h
Source file repositories/reference/linux-study-clean/include/xen/xen-ops.h
File Facts
- System
- Linux kernel
- Corpus path
include/xen/xen-ops.h- Extension
.h- Size
- 6555 bytes
- Lines
- 229
- Domain
- Repository Root And Misc
- Bucket
- include
- Inferred role
- Repository Root And Misc: implementation source
- Status
- source implementation candidate
Why This File Exists
Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/percpu.hlinux/notifier.hlinux/efi.hlinux/virtio_anchor.hxen/xen.hxen/features.hasm/xen/interface.hxen/interface/vcpu.h
Detected Declarations
struct vm_area_structstruct virtio_devicefunction xen_vcpu_nrfunction xen_remap_pfnfunction xen_xlate_remap_gfn_arrayfunction xen_xlate_unmap_gfn_rangefunction xen_remap_domain_gfn_arrayfunction xen_remap_domain_mfn_arrayfunction xen_remap_domain_gfn_rangefunction xen_preemptible_hcall_beginfunction xen_preemptible_hcall_endfunction xen_preemptible_hcall_beginfunction xen_virtio_restricted_mem_acc
Annotated Snippet
static inline void xen_preemptible_hcall_begin(void) { }
static inline void xen_preemptible_hcall_end(void) { }
#endif /* CONFIG_XEN_PV && !CONFIG_PREEMPTION */
#ifdef CONFIG_XEN_GRANT_DMA_OPS
bool xen_virtio_restricted_mem_acc(struct virtio_device *dev);
#else
struct virtio_device;
static inline bool xen_virtio_restricted_mem_acc(struct virtio_device *dev)
{
return false;
}
#endif /* CONFIG_XEN_GRANT_DMA_OPS */
#endif /* INCLUDE_XEN_OPS_H */
Annotation
- Immediate include surface: `linux/percpu.h`, `linux/notifier.h`, `linux/efi.h`, `linux/virtio_anchor.h`, `xen/xen.h`, `xen/features.h`, `asm/xen/interface.h`, `xen/interface/vcpu.h`.
- Detected declarations: `struct vm_area_struct`, `struct virtio_device`, `function xen_vcpu_nr`, `function xen_remap_pfn`, `function xen_xlate_remap_gfn_array`, `function xen_xlate_unmap_gfn_range`, `function xen_remap_domain_gfn_array`, `function xen_remap_domain_mfn_array`, `function xen_remap_domain_gfn_range`, `function xen_preemptible_hcall_begin`.
- Atlas domain: Repository Root And Misc / include.
- 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.