]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/xen/balloon.h
xen/balloon: only hotplug additional memory if required
[mirror_ubuntu-bionic-kernel.git] / include / xen / balloon.h
CommitLineData
803eb047
DDG
1/******************************************************************************
2 * Xen balloon functionality
3 */
4
5#define RETRY_UNLIMITED 0
6
7struct 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;
de5a77d8 14 unsigned long total_pages;
803eb047
DDG
15 unsigned long schedule_delay;
16 unsigned long max_schedule_delay;
17 unsigned long retry_count;
18 unsigned long max_retry_count;
19};
20
21extern struct balloon_stats balloon_stats;
22
23void balloon_set_new_target(unsigned long target);
b6f30679 24
693394b8
SS
25int alloc_xenballooned_pages(int nr_pages, struct page **pages,
26 bool highmem);
27void free_xenballooned_pages(int nr_pages, struct page **pages);
a50777c7 28
07068021 29struct device;
a50777c7 30#ifdef CONFIG_XEN_SELFBALLOONING
07068021 31extern int register_xen_selfballooning(struct device *dev);
a50777c7 32#else
07068021 33static inline int register_xen_selfballooning(struct device *dev)
a50777c7
DM
34{
35 return -ENOSYS;
36}
37#endif