diff options
author | David Vrabel <david.vrabel@citrix.com> | 2015-06-25 14:12:46 +0200 |
---|---|---|
committer | David Vrabel <david.vrabel@citrix.com> | 2015-10-23 15:20:05 +0200 |
commit | 81b286e0f1fe520f2a96f736ffa7e508ac9139ba (patch) | |
tree | 7015960f17bc3fe36ff4b14772aaddf70dcf0da1 /drivers/xen/xenbus | |
parent | xen/balloon: only hotplug additional memory if required (diff) | |
download | linux-81b286e0f1fe520f2a96f736ffa7e508ac9139ba.tar.xz linux-81b286e0f1fe520f2a96f736ffa7e508ac9139ba.zip |
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 'drivers/xen/xenbus')
-rw-r--r-- | drivers/xen/xenbus/xenbus_client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/xen/xenbus/xenbus_client.c b/drivers/xen/xenbus/xenbus_client.c index 2ba09c1195c8..aa304d05101b 100644 --- a/drivers/xen/xenbus/xenbus_client.c +++ b/drivers/xen/xenbus/xenbus_client.c @@ -614,8 +614,7 @@ static int xenbus_map_ring_valloc_hvm(struct xenbus_device *dev, if (!node) return -ENOMEM; - err = alloc_xenballooned_pages(nr_grefs, node->hvm.pages, - false /* lowmem */); + err = alloc_xenballooned_pages(nr_grefs, node->hvm.pages); if (err) goto out_err; |