Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / xen / balloon.h
bloba2b22f01a51d3a342cb8c28a97de11775aab06ce
1 /******************************************************************************
2 * Xen balloon functionality
3 */
5 #define RETRY_UNLIMITED 0
7 struct balloon_stats {
8 /* We aim for 'current allocation' == 'target allocation'. */
9 unsigned long current_pages;
10 unsigned long target_pages;
11 /* Number of pages in high- and low-memory balloons. */
12 unsigned long balloon_low;
13 unsigned long balloon_high;
14 unsigned long schedule_delay;
15 unsigned long max_schedule_delay;
16 unsigned long retry_count;
17 unsigned long max_retry_count;
20 extern struct balloon_stats balloon_stats;
22 void balloon_set_new_target(unsigned long target);
24 int alloc_xenballooned_pages(int nr_pages, struct page** pages);
25 void free_xenballooned_pages(int nr_pages, struct page** pages);