aboutsummaryrefslogtreecommitdiffstats
path: root/include/xen/balloon.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xen/balloon.h')
-rw-r--r--include/xen/balloon.h12
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
24extern struct balloon_stats balloon_stats; 22extern struct balloon_stats balloon_stats;
25 23
26void balloon_set_new_target(unsigned long target); 24void balloon_set_new_target(unsigned long target);
27 25
28int alloc_xenballooned_pages(int nr_pages, struct page **pages, 26int alloc_xenballooned_pages(int nr_pages, struct page **pages);
29 bool highmem);
30void free_xenballooned_pages(int nr_pages, struct page **pages); 27void free_xenballooned_pages(int nr_pages, struct page **pages);
31 28
32struct page *get_balloon_scratch_page(void);
33void put_balloon_scratch_page(void);
34
35struct device; 29struct device;
36#ifdef CONFIG_XEN_SELFBALLOONING 30#ifdef CONFIG_XEN_SELFBALLOONING
37extern int register_xen_selfballooning(struct device *dev); 31extern int register_xen_selfballooning(struct device *dev);