OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
include
/
xen
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:15 AM
rwxr-xr-x
📄
acpi.h
3.41 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
arm
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
balloon.h
1.15 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
events.h
5.14 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
features.h
502 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
grant_table.h
9.99 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
hvc-console.h
518 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
hvm.h
1.29 KB
01/28/2018 09:20:33 PM
rw-r--r--
📁
interface
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
page.h
1.34 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
platform_pci.h
2.04 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
swiotlb-xen.h
271 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
tmem.h
349 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xen-ops.h
5.96 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
xen.h
972 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
xenbus.h
8.54 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
xenbus_dev.h
1.8 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: features.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ /****************************************************************************** * features.h * * Query the features reported by Xen. * * Copyright (c) 2006, Ian Campbell */ #ifndef __XEN_FEATURES_H__ #define __XEN_FEATURES_H__ #include <xen/interface/features.h> void xen_setup_features(void); extern u8 xen_features[XENFEAT_NR_SUBMAPS * 32]; static inline int xen_feature(int flag) { return xen_features[flag]; } #endif /* __ASM_XEN_FEATURES_H__ */