| .. | |||||
| interface | |||||
| acpi.h | |||||
| balloon.h | |||||
| events.h | |||||
| features.h | |||||
| gntalloc.h | |||||
| gntdev.h | |||||
| grant_table.h | |||||
| hvc-console.h | |||||
| hvm.h | |||||
| page.h | |||||
| platform_pci.h | |||||
| swiotlb-xen.h | |||||
| tmem.h | |||||
| xen-ops.h | |||||
| xen.h | |||||
| xenbus.h | |||||
| xenbus_dev.h | |||||
| xencomm.h |
| Server IP : 103.169.32.36 / Your IP : 216.73.217.13 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/modules/3.10.0-1160.119.1.el7.x86_64/build/include/xen/ |
Upload File : |
#ifndef _XEN_XEN_H
#define _XEN_XEN_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
#define xen_domain() (xen_domain_type != XEN_NATIVE)
#define xen_pv_domain() (xen_domain() && \
xen_domain_type == XEN_PV_DOMAIN)
#define xen_hvm_domain() (xen_domain() && \
xen_domain_type == XEN_HVM_DOMAIN)
#ifdef CONFIG_XEN_DOM0
#include <xen/interface/xen.h>
#include <asm/xen/hypervisor.h>
#define xen_initial_domain() (xen_domain() && \
xen_start_info && xen_start_info->flags & SIF_INITDOMAIN)
#else /* !CONFIG_XEN_DOM0 */
#define xen_initial_domain() (0)
#endif /* CONFIG_XEN_DOM0 */
#endif /* _XEN_XEN_H */
| .. | |||||
| interface | |||||
| acpi.h | |||||
| balloon.h | |||||
| events.h | |||||
| features.h | |||||
| gntalloc.h | |||||
| gntdev.h | |||||
| grant_table.h | |||||
| hvc-console.h | |||||
| hvm.h | |||||
| page.h | |||||
| platform_pci.h | |||||
| swiotlb-xen.h | |||||
| tmem.h | |||||
| xen-ops.h | |||||
| xen.h | |||||
| xenbus.h | |||||
| xenbus_dev.h | |||||
| xencomm.h |