include/xen/xen.h
Source file repositories/reference/linux-study-clean/include/xen/xen.h
File Facts
- System
- Linux kernel
- Corpus path
include/xen/xen.h- Extension
.h- Size
- 2540 bytes
- Lines
- 104
- 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/types.hasm/cpufeature.hxen/interface/hvm/start_info.hxen/interface/xen.hasm/xen/hypervisor.hlinux/ioport.hxen/balloon.hlinux/bug.h
Detected Declarations
struct pt_regsstruct bio_vecstruct pageenum xen_domain_typefunction xen_alloc_unpopulated_pagesfunction xen_free_unpopulated_pagesfunction xen_processor_present
Annotated Snippet
#ifndef _XEN_XEN_H
#define _XEN_XEN_H
#include <linux/types.h>
enum xen_domain_type {
XEN_NATIVE, /* running on bare hardware */
XEN_PV_DOMAIN, /* running in a PV domain */
XEN_HVM_DOMAIN, /* running in a Xen hvm domain */
};
#ifdef CONFIG_XEN
extern enum xen_domain_type xen_domain_type;
#else
#define xen_domain_type XEN_NATIVE
#endif
#ifdef CONFIG_XEN_PVH
extern bool xen_pvh;
#else
#define xen_pvh 0
#endif
#ifdef CONFIG_X86
#include <asm/cpufeature.h>
#define xen_pv_domain() (cpu_feature_enabled(X86_FEATURE_XENPV))
#else
#define xen_pv_domain() 0
#endif
#define xen_domain() (xen_domain_type != XEN_NATIVE)
#define xen_hvm_domain() (xen_domain_type == XEN_HVM_DOMAIN)
#define xen_pvh_domain() (xen_pvh)
extern uint32_t xen_start_flags;
#ifdef CONFIG_XEN_PV
extern bool xen_pv_pci_possible;
#else
#define xen_pv_pci_possible 0
#endif
#include <xen/interface/hvm/start_info.h>
extern struct hvm_start_info pvh_start_info;
void xen_prepare_pvh(void);
struct pt_regs;
void xen_pv_evtchn_do_upcall(struct pt_regs *regs);
#ifdef CONFIG_XEN_DOM0
#include <xen/interface/xen.h>
#include <asm/xen/hypervisor.h>
#define xen_initial_domain() (xen_domain() && \
(xen_start_flags & SIF_INITDOMAIN))
#else /* !CONFIG_XEN_DOM0 */
#define xen_initial_domain() (0)
#endif /* CONFIG_XEN_DOM0 */
struct bio_vec;
struct page;
bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
const struct page *page);
#if defined(CONFIG_MEMORY_HOTPLUG) && defined(CONFIG_XEN_BALLOON)
extern u64 xen_saved_max_mem_size;
#endif
#ifdef CONFIG_XEN_UNPOPULATED_ALLOC
extern unsigned long xen_unpopulated_pages;
int xen_alloc_unpopulated_pages(unsigned int nr_pages, struct page **pages);
void xen_free_unpopulated_pages(unsigned int nr_pages, struct page **pages);
#include <linux/ioport.h>
int arch_xen_unpopulated_init(struct resource **res);
#else
#define xen_unpopulated_pages 0UL
#include <xen/balloon.h>
static inline int xen_alloc_unpopulated_pages(unsigned int nr_pages,
struct page **pages)
{
return xen_alloc_ballooned_pages(nr_pages, pages);
}
static inline void xen_free_unpopulated_pages(unsigned int nr_pages,
struct page **pages)
{
xen_free_ballooned_pages(nr_pages, pages);
}
#endif
Annotation
- Immediate include surface: `linux/types.h`, `asm/cpufeature.h`, `xen/interface/hvm/start_info.h`, `xen/interface/xen.h`, `asm/xen/hypervisor.h`, `linux/ioport.h`, `xen/balloon.h`, `linux/bug.h`.
- Detected declarations: `struct pt_regs`, `struct bio_vec`, `struct page`, `enum xen_domain_type`, `function xen_alloc_unpopulated_pages`, `function xen_free_unpopulated_pages`, `function xen_processor_present`.
- 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.