aboutsummaryrefslogtreecommitdiffstats
path: root/include/xen/balloon.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2015-11-23 03:04:05 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-11-23 03:04:05 -0500
commit92907cbbef8625bb3998d1eb385fc88f23c97a3f (patch)
tree15626ff9287e37c3cb81c7286d6db5a7fd77c854 /include/xen/balloon.h
parent15fbfccfe92c62ae8d1ecc647c44157ed01ac02e (diff)
parent1ec218373b8ebda821aec00bb156a9c94fad9cd4 (diff)
Merge tag 'v4.4-rc2' into drm-intel-next-queued
Linux 4.4-rc2 Backmerge to get at commit 1b0e3a049efe471c399674fd954500ce97438d30 Author: Imre Deak <imre.deak@intel.com> Date: Thu Nov 5 23:04:11 2015 +0200 drm/i915/skl: disable display side power well support for now so that we can proplery re-eanble skl power wells in -next. Conflicts are just adjacent lines changed, except for intel_fbdev.c where we need to interleave the changs. Nothing nefarious. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
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);