diff options
author | David Vrabel <david.vrabel@citrix.com> | 2015-06-25 13:12:46 +0100 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2015-10-23 14:20:05 +0100 |
commit | 81b286e0f1fe520f2a96f736ffa7e508ac9139ba (patch) | |
tree | 7015960f17bc3fe36ff4b14772aaddf70dcf0da1 /include/xen | |
parent | b2ac6aa8f71bf57b948ee68cd913c350b932da88 (diff) | |
download | op-kernel-dev-81b286e0f1fe520f2a96f736ffa7e508ac9139ba.zip op-kernel-dev-81b286e0f1fe520f2a96f736ffa7e508ac9139ba.tar.gz |
xen/balloon: make alloc_xenballoon_pages() always allocate low pages
All users of alloc_xenballoon_pages() wanted low memory pages, so
remove the option for high memory.
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/balloon.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/xen/balloon.h b/include/xen/balloon.h index c8aee7a..83efdeb 100644 --- a/include/xen/balloon.h +++ b/include/xen/balloon.h @@ -22,8 +22,7 @@ extern struct balloon_stats balloon_stats; void balloon_set_new_target(unsigned long target); -int alloc_xenballooned_pages(int nr_pages, struct page **pages, - bool highmem); +int alloc_xenballooned_pages(int nr_pages, struct page **pages); void free_xenballooned_pages(int nr_pages, struct page **pages); struct device; |