diff options
Diffstat (limited to 'include/xen/balloon.h')
-rw-r--r-- | include/xen/balloon.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/include/xen/balloon.h b/include/xen/balloon.h index a4c1c6a93691..d1767dfb0d95 100644 --- a/include/xen/balloon.h +++ b/include/xen/balloon.h | |||
@@ -8,30 +8,24 @@ struct balloon_stats { | |||
8 | /* We aim for 'current allocation' == 'target allocation'. */ | 8 | /* We aim for 'current allocation' == 'target allocation'. */ |
9 | unsigned long current_pages; | 9 | unsigned long current_pages; |
10 | unsigned long target_pages; | 10 | unsigned long target_pages; |
11 | unsigned long target_unpopulated; | ||
11 | /* Number of pages in high- and low-memory balloons. */ | 12 | /* Number of pages in high- and low-memory balloons. */ |
12 | unsigned long balloon_low; | 13 | unsigned long balloon_low; |
13 | unsigned long balloon_high; | 14 | unsigned long balloon_high; |
15 | unsigned long total_pages; | ||
14 | unsigned long schedule_delay; | 16 | unsigned long schedule_delay; |
15 | unsigned long max_schedule_delay; | 17 | unsigned long max_schedule_delay; |
16 | unsigned long retry_count; | 18 | unsigned long retry_count; |
17 | unsigned long max_retry_count; | 19 | unsigned long max_retry_count; |
18 | #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG | ||
19 | unsigned long hotplug_pages; | ||
20 | unsigned long balloon_hotplug; | ||
21 | #endif | ||
22 | }; | 20 | }; |
23 | 21 | ||
24 | extern struct balloon_stats balloon_stats; | 22 | extern struct balloon_stats balloon_stats; |
25 | 23 | ||
26 | void balloon_set_new_target(unsigned long target); | 24 | void balloon_set_new_target(unsigned long target); |
27 | 25 | ||
28 | int alloc_xenballooned_pages(int nr_pages, struct page **pages, | 26 | int alloc_xenballooned_pages(int nr_pages, struct page **pages); |
29 | bool highmem); | ||
30 | void free_xenballooned_pages(int nr_pages, struct page **pages); | 27 | void free_xenballooned_pages(int nr_pages, struct page **pages); |
31 | 28 | ||
32 | struct page *get_balloon_scratch_page(void); | ||
33 | void put_balloon_scratch_page(void); | ||
34 | |||
35 | struct device; | 29 | struct device; |
36 | #ifdef CONFIG_XEN_SELFBALLOONING | 30 | #ifdef CONFIG_XEN_SELFBALLOONING |
37 | extern int register_xen_selfballooning(struct device *dev); | 31 | extern int register_xen_selfballooning(struct device *dev); |