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: balloon.h
Close
/* SPDX-License-Identifier: GPL-2.0 */ /****************************************************************************** * Xen balloon functionality */ #define RETRY_UNLIMITED 0 struct balloon_stats { /* We aim for 'current allocation' == 'target allocation'. */ unsigned long current_pages; unsigned long target_pages; unsigned long target_unpopulated; /* Number of pages in high- and low-memory balloons. */ unsigned long balloon_low; unsigned long balloon_high; unsigned long total_pages; unsigned long schedule_delay; unsigned long max_schedule_delay; unsigned long retry_count; unsigned long max_retry_count; }; extern struct balloon_stats balloon_stats; void balloon_set_new_target(unsigned long target); int alloc_xenballooned_pages(int nr_pages, struct page **pages); void free_xenballooned_pages(int nr_pages, struct page **pages); struct device; #ifdef CONFIG_XEN_SELFBALLOONING extern int register_xen_selfballooning(struct device *dev); #else static inline int register_xen_selfballooning(struct device *dev) { return -ENOSYS; } #endif #ifdef CONFIG_XEN_BALLOON void xen_balloon_init(void); #else static inline void xen_balloon_init(void) { } #endif