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
/****************************************************************************** * 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