blob: 7ec933d505d202fd0bd17b4d714f5e257d9187cb [file] [log] [blame]
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -07001/******************************************************************************
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -07002 * Xen balloon driver - enables returning/claiming memory to/from Xen.
3 *
4 * Copyright (c) 2003, B Dragovic
5 * Copyright (c) 2003-2004, M Williamson, K Fraser
6 * Copyright (c) 2005 Dan M. Smith, IBM Corporation
Daniel Kiper080e2be2011-07-25 17:12:06 -07007 * Copyright (c) 2010 Daniel Kiper
8 *
9 * Memory hotplug support was written by Daniel Kiper. Work on
10 * it was sponsored by Google under Google Summer of Code 2010
11 * program. Jeremy Fitzhardinge from Citrix was the mentor for
12 * this project.
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070013 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License version 2
16 * as published by the Free Software Foundation; or, when distributed
17 * separately from the Linux kernel or incorporated into other
18 * software packages, subject to the following license:
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining a copy
21 * of this source file (the "Software"), to deal in the Software without
22 * restriction, including without limitation the rights to use, copy, modify,
23 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
24 * and to permit persons to whom the Software is furnished to do so, subject to
25 * the following conditions:
26 *
27 * The above copyright notice and this permission notice shall be included in
28 * all copies or substantial portions of the Software.
29 *
30 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
32 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
33 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
34 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
35 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
36 * IN THE SOFTWARE.
37 */
38
Joe Perches283c0972013-06-28 03:21:41 -070039#define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
40
Stefano Stabellinicd9151e2013-08-04 15:39:40 +010041#include <linux/cpu.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070042#include <linux/kernel.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070043#include <linux/sched.h>
44#include <linux/errno.h>
Paul Gortmaker72ee5112011-07-03 16:20:57 -040045#include <linux/module.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070046#include <linux/mm.h>
47#include <linux/bootmem.h>
48#include <linux/pagemap.h>
49#include <linux/highmem.h>
50#include <linux/mutex.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070051#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/gfp.h>
Daniel Kiper080e2be2011-07-25 17:12:06 -070053#include <linux/notifier.h>
54#include <linux/memory.h>
55#include <linux/memory_hotplug.h>
Stefano Stabellinicd9151e2013-08-04 15:39:40 +010056#include <linux/percpu-defs.h>
David Vrabel55b3da92015-06-24 15:58:42 +010057#include <linux/slab.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070058
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070059#include <asm/page.h>
60#include <asm/pgalloc.h>
61#include <asm/pgtable.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070062#include <asm/tlb.h>
63
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080064#include <asm/xen/hypervisor.h>
65#include <asm/xen/hypercall.h>
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070066
67#include <xen/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080068#include <xen/interface/xen.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070069#include <xen/interface/memory.h>
Daniel De Graaf803eb042011-03-14 11:29:37 -040070#include <xen/balloon.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070071#include <xen/features.h>
72#include <xen/page.h>
73
Daniel Kiper95d2ac42011-03-08 22:48:24 +010074/*
75 * balloon_process() state:
76 *
77 * BP_DONE: done or nothing to do,
David Vrabelb2ac6aa2015-06-25 12:10:28 +010078 * BP_WAIT: wait to be rescheduled,
Daniel Kiper95d2ac42011-03-08 22:48:24 +010079 * BP_EAGAIN: error, go to sleep,
80 * BP_ECANCELED: error, balloon operation canceled.
81 */
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070082
Daniel Kiper95d2ac42011-03-08 22:48:24 +010083enum bp_state {
84 BP_DONE,
David Vrabelb2ac6aa2015-06-25 12:10:28 +010085 BP_WAIT,
Daniel Kiper95d2ac42011-03-08 22:48:24 +010086 BP_EAGAIN,
87 BP_ECANCELED
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070088};
89
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070090
91static DEFINE_MUTEX(balloon_mutex);
92
Daniel De Graaf803eb042011-03-14 11:29:37 -040093struct balloon_stats balloon_stats;
94EXPORT_SYMBOL_GPL(balloon_stats);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070095
96/* We increase/decrease in batches which fit in a page */
Ian Campbell965c0aa2012-10-17 09:39:16 +010097static xen_pfn_t frame_list[PAGE_SIZE / sizeof(unsigned long)];
Stefano Stabellinicd9151e2013-08-04 15:39:40 +010098
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070099
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700100/* List of ballooned pages, threaded through the mem_map array. */
101static LIST_HEAD(ballooned_pages);
102
103/* Main work function, always executed in process context. */
104static void balloon_process(struct work_struct *work);
Daniel Kiper95170b22011-03-08 22:47:39 +0100105static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700106
107/* When ballooning out (allocating memory to return to Xen) we don't really
108 want the kernel to try too hard since that can trigger the oom killer. */
109#define GFP_BALLOON \
110 (GFP_HIGHUSER | __GFP_NOWARN | __GFP_NORETRY | __GFP_NOMEMALLOC)
111
112static void scrub_page(struct page *page)
113{
114#ifdef CONFIG_XEN_SCRUB_PAGES
Jeremy Fitzhardinge26a3e992008-11-17 09:35:00 -0800115 clear_highpage(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700116#endif
117}
118
119/* balloon_append: add the given page to the balloon. */
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700120static void __balloon_append(struct page *page)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700121{
122 /* Lowmem is re-populated first, so highmem pages go at list tail. */
123 if (PageHighMem(page)) {
124 list_add_tail(&page->lru, &ballooned_pages);
125 balloon_stats.balloon_high++;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700126 } else {
127 list_add(&page->lru, &ballooned_pages);
128 balloon_stats.balloon_low++;
129 }
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700130}
Gianluca Guida3d65c942009-07-30 22:54:36 +0100131
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700132static void balloon_append(struct page *page)
133{
134 __balloon_append(page);
Jiang Liu3dcc0572013-07-03 15:03:21 -0700135 adjust_managed_page_count(page, -1);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700136}
137
138/* balloon_retrieve: rescue a page from the balloon, if it is not empty. */
David Vrabel81b286e2015-06-25 13:12:46 +0100139static struct page *balloon_retrieve(bool require_lowmem)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700140{
141 struct page *page;
142
143 if (list_empty(&ballooned_pages))
144 return NULL;
145
David Vrabel81b286e2015-06-25 13:12:46 +0100146 page = list_entry(ballooned_pages.next, struct page, lru);
147 if (require_lowmem && PageHighMem(page))
148 return NULL;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700149 list_del(&page->lru);
150
Jiang Liu3dcc0572013-07-03 15:03:21 -0700151 if (PageHighMem(page))
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700152 balloon_stats.balloon_high--;
Jiang Liu3dcc0572013-07-03 15:03:21 -0700153 else
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700154 balloon_stats.balloon_low--;
155
Jiang Liu3dcc0572013-07-03 15:03:21 -0700156 adjust_managed_page_count(page, 1);
Gianluca Guida3d65c942009-07-30 22:54:36 +0100157
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700158 return page;
159}
160
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700161static struct page *balloon_next_page(struct page *page)
162{
163 struct list_head *next = page->lru.next;
164 if (next == &ballooned_pages)
165 return NULL;
166 return list_entry(next, struct page, lru);
167}
168
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100169static enum bp_state update_schedule(enum bp_state state)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700170{
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100171 if (state == BP_WAIT)
172 return BP_WAIT;
173
Boris Ostrovskyfd8b7952014-10-07 17:00:07 -0400174 if (state == BP_ECANCELED)
175 return BP_ECANCELED;
176
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100177 if (state == BP_DONE) {
178 balloon_stats.schedule_delay = 1;
179 balloon_stats.retry_count = 1;
180 return BP_DONE;
181 }
182
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100183 ++balloon_stats.retry_count;
184
185 if (balloon_stats.max_retry_count != RETRY_UNLIMITED &&
186 balloon_stats.retry_count > balloon_stats.max_retry_count) {
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100187 balloon_stats.schedule_delay = 1;
188 balloon_stats.retry_count = 1;
189 return BP_ECANCELED;
190 }
191
192 balloon_stats.schedule_delay <<= 1;
193
194 if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
195 balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
196
197 return BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700198}
199
Daniel Kiper080e2be2011-07-25 17:12:06 -0700200#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
David Vrabel55b3da92015-06-24 15:58:42 +0100201static struct resource *additional_memory_resource(phys_addr_t size)
202{
203 struct resource *res;
204 int ret;
205
206 res = kzalloc(sizeof(*res), GFP_KERNEL);
207 if (!res)
208 return NULL;
209
210 res->name = "System RAM";
211 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
212
213 ret = allocate_resource(&iomem_resource, res,
214 size, 0, -1,
215 PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
216 if (ret < 0) {
217 pr_err("Cannot allocate new System RAM resource\n");
218 kfree(res);
219 return NULL;
220 }
221
222 return res;
223}
224
225static void release_memory_resource(struct resource *resource)
226{
227 if (!resource)
228 return;
229
230 /*
231 * No need to reset region to identity mapped since we now
232 * know that no I/O can be in this region
233 */
234 release_resource(resource);
235 kfree(resource);
236}
Daniel Kiper080e2be2011-07-25 17:12:06 -0700237
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100238static enum bp_state reserve_additional_memory(void)
Daniel Kiper080e2be2011-07-25 17:12:06 -0700239{
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100240 long credit;
David Vrabel55b3da92015-06-24 15:58:42 +0100241 struct resource *resource;
Daniel Kiper080e2be2011-07-25 17:12:06 -0700242 int nid, rc;
David Vrabel55b3da92015-06-24 15:58:42 +0100243 unsigned long balloon_hotplug;
Daniel Kiper080e2be2011-07-25 17:12:06 -0700244
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100245 credit = balloon_stats.target_pages - balloon_stats.total_pages;
246
247 /*
248 * Already hotplugged enough pages? Wait for them to be
249 * onlined.
250 */
251 if (credit <= 0)
252 return BP_WAIT;
253
David Vrabel55b3da92015-06-24 15:58:42 +0100254 balloon_hotplug = round_up(credit, PAGES_PER_SECTION);
255
256 resource = additional_memory_resource(balloon_hotplug * PAGE_SIZE);
257 if (!resource)
258 goto err;
259
260 nid = memory_add_physaddr_to_nid(resource->start);
Daniel Kiper080e2be2011-07-25 17:12:06 -0700261
Juergen Gross3c56b3a2015-03-20 13:55:39 +0100262#ifdef CONFIG_XEN_HAVE_PVMMU
263 /*
264 * add_memory() will build page tables for the new memory so
265 * the p2m must contain invalid entries so the correct
266 * non-present PTEs will be written.
267 *
268 * If a failure occurs, the original (identity) p2m entries
269 * are not restored since this region is now known not to
270 * conflict with any devices.
271 */
272 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
273 unsigned long pfn, i;
274
David Vrabel55b3da92015-06-24 15:58:42 +0100275 pfn = PFN_DOWN(resource->start);
Juergen Gross3c56b3a2015-03-20 13:55:39 +0100276 for (i = 0; i < balloon_hotplug; i++) {
277 if (!set_phys_to_machine(pfn + i, INVALID_P2M_ENTRY)) {
278 pr_warn("set_phys_to_machine() failed, no memory added\n");
David Vrabel55b3da92015-06-24 15:58:42 +0100279 goto err;
Juergen Gross3c56b3a2015-03-20 13:55:39 +0100280 }
281 }
282 }
283#endif
284
David Vrabel55b3da92015-06-24 15:58:42 +0100285 rc = add_memory_resource(nid, resource);
Daniel Kiper080e2be2011-07-25 17:12:06 -0700286 if (rc) {
David Vrabel3dcf6362014-09-01 18:52:44 +0100287 pr_warn("Cannot add additional memory (%i)\n", rc);
David Vrabel55b3da92015-06-24 15:58:42 +0100288 goto err;
Daniel Kiper080e2be2011-07-25 17:12:06 -0700289 }
290
David Vrabelde5a77d2015-06-25 12:08:20 +0100291 balloon_stats.total_pages += balloon_hotplug;
Daniel Kiper080e2be2011-07-25 17:12:06 -0700292
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100293 return BP_WAIT;
David Vrabel55b3da92015-06-24 15:58:42 +0100294 err:
295 release_memory_resource(resource);
296 return BP_ECANCELED;
Daniel Kiper080e2be2011-07-25 17:12:06 -0700297}
298
299static void xen_online_page(struct page *page)
300{
301 __online_page_set_limits(page);
302
303 mutex_lock(&balloon_mutex);
304
305 __balloon_append(page);
306
Daniel Kiper080e2be2011-07-25 17:12:06 -0700307 mutex_unlock(&balloon_mutex);
308}
309
310static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
311{
312 if (val == MEM_ONLINE)
313 schedule_delayed_work(&balloon_worker, 0);
314
315 return NOTIFY_OK;
316}
317
318static struct notifier_block xen_memory_nb = {
319 .notifier_call = xen_memory_notifier,
320 .priority = 0
321};
322#else
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100323static enum bp_state reserve_additional_memory(void)
Daniel Kiper080e2be2011-07-25 17:12:06 -0700324{
325 balloon_stats.target_pages = balloon_stats.current_pages;
326 return BP_DONE;
327}
328#endif /* CONFIG_XEN_BALLOON_MEMORY_HOTPLUG */
329
David Vrabelde5a77d2015-06-25 12:08:20 +0100330static long current_credit(void)
331{
332 return balloon_stats.target_pages - balloon_stats.current_pages;
333}
334
335static bool balloon_is_inflated(void)
336{
337 return balloon_stats.balloon_low || balloon_stats.balloon_high;
338}
339
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100340static enum bp_state increase_reservation(unsigned long nr_pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700341{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100342 int rc;
Jeremy Fitzhardinge2f70e0a2010-09-02 23:11:17 -0700343 unsigned long pfn, i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700344 struct page *page;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700345 struct xen_memory_reservation reservation = {
346 .address_bits = 0,
347 .extent_order = 0,
348 .domid = DOMID_SELF
349 };
350
351 if (nr_pages > ARRAY_SIZE(frame_list))
352 nr_pages = ARRAY_SIZE(frame_list);
353
Jie Liu9346c2a2013-11-13 20:59:58 +0800354 page = list_first_entry_or_null(&ballooned_pages, struct page, lru);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700355 for (i = 0; i < nr_pages; i++) {
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100356 if (!page) {
357 nr_pages = i;
358 break;
359 }
Joe Perchesa419aef2009-08-18 11:18:35 -0700360 frame_list[i] = page_to_pfn(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700361 page = balloon_next_page(page);
362 }
363
Isaku Yamahataa90971e2008-05-26 23:31:14 +0100364 set_xen_guest_handle(reservation.extent_start, frame_list);
Jeremy Fitzhardingefde28e82008-07-24 16:28:00 -0700365 reservation.nr_extents = nr_pages;
366 rc = HYPERVISOR_memory_op(XENMEM_populate_physmap, &reservation);
Konrad Rzeszutek Wilk40095de2011-03-14 11:42:40 -0400367 if (rc <= 0)
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100368 return BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700369
Ian Campbellbc2c0302009-06-05 11:58:37 +0100370 for (i = 0; i < rc; i++) {
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400371 page = balloon_retrieve(false);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700372 BUG_ON(page == NULL);
373
374 pfn = page_to_pfn(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700375
Ian Campbellc2374bf2012-10-03 12:17:50 +0100376#ifdef CONFIG_XEN_HAVE_PVMMU
Stefano Stabellinic1d15f52013-12-11 16:58:42 +0000377 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
378 set_phys_to_machine(pfn, frame_list[i]);
379
380 /* Link back into the page tables if not highmem. */
381 if (!PageHighMem(page)) {
382 int ret;
383 ret = HYPERVISOR_update_va_mapping(
384 (unsigned long)__va(pfn << PAGE_SHIFT),
385 mfn_pte(frame_list[i], PAGE_KERNEL),
386 0);
387 BUG_ON(ret);
388 }
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700389 }
Ian Campbellc2374bf2012-10-03 12:17:50 +0100390#endif
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700391
392 /* Relinquish the page back to the allocator. */
Jiang Liu3dcc0572013-07-03 15:03:21 -0700393 __free_reserved_page(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700394 }
395
Ian Campbellbc2c0302009-06-05 11:58:37 +0100396 balloon_stats.current_pages += rc;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700397
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100398 return BP_DONE;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700399}
400
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400401static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700402{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100403 enum bp_state state = BP_DONE;
Jeremy Fitzhardinge2f70e0a2010-09-02 23:11:17 -0700404 unsigned long pfn, i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700405 struct page *page;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700406 int ret;
407 struct xen_memory_reservation reservation = {
408 .address_bits = 0,
409 .extent_order = 0,
410 .domid = DOMID_SELF
411 };
412
413 if (nr_pages > ARRAY_SIZE(frame_list))
414 nr_pages = ARRAY_SIZE(frame_list);
415
416 for (i = 0; i < nr_pages; i++) {
Lisa Nguyenfce92682013-05-15 22:59:40 -0700417 page = alloc_page(gfp);
418 if (page == NULL) {
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700419 nr_pages = i;
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100420 state = BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700421 break;
422 }
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700423 scrub_page(page);
Dan Magenheimer1058a752009-01-22 14:36:08 -0800424
Wei Liu09ed3d52014-03-15 16:11:47 +0000425 frame_list[i] = page_to_pfn(page);
426 }
427
428 /*
429 * Ensure that ballooned highmem pages don't have kmaps.
430 *
431 * Do this before changing the p2m as kmap_flush_unused()
432 * reads PTEs to obtain pages (and hence needs the original
433 * p2m entry).
434 */
435 kmap_flush_unused();
436
437 /* Update direct mapping, invalidate P2M, and add to balloon. */
438 for (i = 0; i < nr_pages; i++) {
439 pfn = frame_list[i];
Julien Grall0df4f262015-08-07 17:34:37 +0100440 frame_list[i] = pfn_to_gfn(pfn);
Wei Liu09ed3d52014-03-15 16:11:47 +0000441 page = pfn_to_page(pfn);
442
Stefano Stabellinic1d15f52013-12-11 16:58:42 +0000443#ifdef CONFIG_XEN_HAVE_PVMMU
Wei Liu04660bb2013-08-27 16:17:25 +0100444 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Stefano Stabellinic1d15f52013-12-11 16:58:42 +0000445 if (!PageHighMem(page)) {
446 ret = HYPERVISOR_update_va_mapping(
447 (unsigned long)__va(pfn << PAGE_SHIFT),
David Vrabel0bb599f2015-01-05 17:06:01 +0000448 __pte_ma(0), 0);
Stefano Stabellinic1d15f52013-12-11 16:58:42 +0000449 BUG_ON(ret);
David Vrabelfb9a0c42014-06-27 10:42:03 +0100450 }
451 __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
Wei Liu04660bb2013-08-27 16:17:25 +0100452 }
Stefano Stabellinic1d15f52013-12-11 16:58:42 +0000453#endif
David Vrabel24f69372013-09-19 17:14:53 +0100454
Wei Liu09ed3d52014-03-15 16:11:47 +0000455 balloon_append(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700456 }
457
David Vrabel24f69372013-09-19 17:14:53 +0100458 flush_tlb_all();
David Vrabel2bad07c2013-09-11 17:45:44 +0000459
Isaku Yamahataa90971e2008-05-26 23:31:14 +0100460 set_xen_guest_handle(reservation.extent_start, frame_list);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700461 reservation.nr_extents = nr_pages;
462 ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation, &reservation);
463 BUG_ON(ret != nr_pages);
464
465 balloon_stats.current_pages -= nr_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700466
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100467 return state;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700468}
469
470/*
Juergen Gross929423f2015-07-20 13:49:39 +0200471 * As this is a work item it is guaranteed to run as a single instance only.
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700472 * We may of course race updates of the target counts (which are protected
473 * by the balloon lock), or with changes to the Xen hard limit, but we will
474 * recover from these in time.
475 */
476static void balloon_process(struct work_struct *work)
477{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100478 enum bp_state state = BP_DONE;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700479 long credit;
480
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700481
482 do {
Juergen Gross929423f2015-07-20 13:49:39 +0200483 mutex_lock(&balloon_mutex);
484
Daniel Kiper83be7e52011-03-28 11:34:10 +0200485 credit = current_credit();
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100486
Daniel Kiper080e2be2011-07-25 17:12:06 -0700487 if (credit > 0) {
488 if (balloon_is_inflated())
489 state = increase_reservation(credit);
490 else
David Vrabelb2ac6aa2015-06-25 12:10:28 +0100491 state = reserve_additional_memory();
Daniel Kiper080e2be2011-07-25 17:12:06 -0700492 }
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100493
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700494 if (credit < 0)
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400495 state = decrease_reservation(-credit, GFP_BALLOON);
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100496
497 state = update_schedule(state);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700498
Juergen Gross929423f2015-07-20 13:49:39 +0200499 mutex_unlock(&balloon_mutex);
500
501 cond_resched();
502
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100503 } while (credit && state == BP_DONE);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700504
505 /* Schedule more work if there is some still to be done. */
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100506 if (state == BP_EAGAIN)
507 schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700508}
509
510/* Resets the Xen limit, sets new target, and kicks off processing. */
Daniel De Graaf803eb042011-03-14 11:29:37 -0400511void balloon_set_new_target(unsigned long target)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700512{
513 /* No need for lock. Not read-modify-write updates. */
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700514 balloon_stats.target_pages = target;
Daniel Kiper95170b22011-03-08 22:47:39 +0100515 schedule_delayed_work(&balloon_worker, 0);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700516}
Daniel De Graaf803eb042011-03-14 11:29:37 -0400517EXPORT_SYMBOL_GPL(balloon_set_new_target);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700518
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400519/**
520 * alloc_xenballooned_pages - get pages that have been ballooned out
521 * @nr_pages: Number of pages to get
522 * @pages: pages returned
523 * @return 0 on success, error otherwise
524 */
David Vrabel81b286e2015-06-25 13:12:46 +0100525int alloc_xenballooned_pages(int nr_pages, struct page **pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700526{
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400527 int pgno = 0;
Ruslan Pisareve882dc92011-07-26 14:15:59 +0300528 struct page *page;
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400529 mutex_lock(&balloon_mutex);
530 while (pgno < nr_pages) {
David Vrabel81b286e2015-06-25 13:12:46 +0100531 page = balloon_retrieve(true);
532 if (page) {
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400533 pages[pgno++] = page;
534 } else {
535 enum bp_state st;
David Vrabel81b286e2015-06-25 13:12:46 +0100536 st = decrease_reservation(nr_pages - pgno, GFP_USER);
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400537 if (st != BP_DONE)
538 goto out_undo;
539 }
540 }
541 mutex_unlock(&balloon_mutex);
542 return 0;
543 out_undo:
544 while (pgno)
545 balloon_append(pages[--pgno]);
546 /* Free the memory back to the kernel soon */
547 schedule_delayed_work(&balloon_worker, 0);
548 mutex_unlock(&balloon_mutex);
549 return -ENOMEM;
550}
551EXPORT_SYMBOL(alloc_xenballooned_pages);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700552
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400553/**
554 * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
555 * @nr_pages: Number of pages
556 * @pages: pages to return
557 */
Ruslan Pisareve882dc92011-07-26 14:15:59 +0300558void free_xenballooned_pages(int nr_pages, struct page **pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700559{
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400560 int i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700561
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400562 mutex_lock(&balloon_mutex);
563
564 for (i = 0; i < nr_pages; i++) {
565 if (pages[i])
566 balloon_append(pages[i]);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700567 }
568
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400569 /* The balloon may be too large now. Shrink it if needed. */
Daniel Kiper83be7e52011-03-28 11:34:10 +0200570 if (current_credit())
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400571 schedule_delayed_work(&balloon_worker, 0);
572
573 mutex_unlock(&balloon_mutex);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700574}
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400575EXPORT_SYMBOL(free_xenballooned_pages);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700576
David Vrabel8b5d44a2011-09-28 17:46:34 +0100577static void __init balloon_add_region(unsigned long start_pfn,
578 unsigned long pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700579{
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200580 unsigned long pfn, extra_pfn_end;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700581 struct page *page;
582
David Vrabel8b5d44a2011-09-28 17:46:34 +0100583 /*
584 * If the amount of usable memory has been limited (e.g., with
585 * the 'mem' command line parameter), don't add pages beyond
586 * this limit.
587 */
588 extra_pfn_end = min(max_pfn, start_pfn + pages);
589
590 for (pfn = start_pfn; pfn < extra_pfn_end; pfn++) {
591 page = pfn_to_page(pfn);
592 /* totalram_pages and totalhigh_pages do not
593 include the boot-time balloon extension, so
594 don't subtract from it. */
595 __balloon_append(page);
596 }
David Vrabelde5a77d2015-06-25 12:08:20 +0100597
598 balloon_stats.total_pages += extra_pfn_end - start_pfn;
David Vrabel8b5d44a2011-09-28 17:46:34 +0100599}
600
601static int __init balloon_init(void)
602{
David Vrabel0bb599f2015-01-05 17:06:01 +0000603 int i;
David Vrabel8b5d44a2011-09-28 17:46:34 +0100604
Stefano Stabellini53d55222010-12-02 17:55:05 +0000605 if (!xen_domain())
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700606 return -ENODEV;
607
Joe Perches283c0972013-06-28 03:21:41 -0700608 pr_info("Initialising balloon driver\n");
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700609
David Vrabelaa244112011-09-28 17:46:32 +0100610 balloon_stats.current_pages = xen_pv_domain()
611 ? min(xen_start_info->nr_pages - xen_released_pages, max_pfn)
Boris Ostrovskyc275a572013-11-06 15:37:40 -0500612 : get_num_physpages();
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700613 balloon_stats.target_pages = balloon_stats.current_pages;
614 balloon_stats.balloon_low = 0;
615 balloon_stats.balloon_high = 0;
David Vrabelde5a77d2015-06-25 12:08:20 +0100616 balloon_stats.total_pages = balloon_stats.current_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700617
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100618 balloon_stats.schedule_delay = 1;
619 balloon_stats.max_schedule_delay = 32;
620 balloon_stats.retry_count = 1;
Konrad Rzeszutek Wilk40095de2011-03-14 11:42:40 -0400621 balloon_stats.max_retry_count = RETRY_UNLIMITED;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700622
Daniel Kiper080e2be2011-07-25 17:12:06 -0700623#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
Daniel Kiper080e2be2011-07-25 17:12:06 -0700624 set_online_page_callback(&xen_online_page);
625 register_memory_notifier(&xen_memory_nb);
626#endif
627
Jeremy Fitzhardinge2a4c92f2010-12-02 15:30:06 -0800628 /*
David Vrabelb1cbf9b2011-09-28 17:46:33 +0100629 * Initialize the balloon with pages from the extra memory
David Vrabel8b5d44a2011-09-28 17:46:34 +0100630 * regions (see arch/x86/xen/setup.c).
Jeremy Fitzhardinge2a4c92f2010-12-02 15:30:06 -0800631 */
David Vrabel8b5d44a2011-09-28 17:46:34 +0100632 for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++)
Juergen Gross626d7502015-09-04 14:05:51 +0200633 if (xen_extra_mem[i].n_pfns)
634 balloon_add_region(xen_extra_mem[i].start_pfn,
635 xen_extra_mem[i].n_pfns);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700636
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700637 return 0;
638}
639
640subsys_initcall(balloon_init);
641
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700642MODULE_LICENSE("GPL");