]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/xen/balloon.c
xen/balloon: Set pages PageOffline() in balloon_add_region()
[mirror_ubuntu-jammy-kernel.git] / drivers / xen / balloon.c
CommitLineData
1775826c 1/******************************************************************************
1775826c
JF
2 * 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
080e2be7
DK
7 * 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.
1775826c
JF
13 *
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
283c0972
JP
39#define pr_fmt(fmt) "xen:" KBUILD_MODNAME ": " fmt
40
cd9151e2 41#include <linux/cpu.h>
1775826c 42#include <linux/kernel.h>
1775826c 43#include <linux/sched.h>
5b825c3a 44#include <linux/cred.h>
1775826c
JF
45#include <linux/errno.h>
46#include <linux/mm.h>
57c8a661 47#include <linux/memblock.h>
1775826c
JF
48#include <linux/pagemap.h>
49#include <linux/highmem.h>
50#include <linux/mutex.h>
1775826c 51#include <linux/list.h>
5a0e3ad6 52#include <linux/gfp.h>
080e2be7
DK
53#include <linux/notifier.h>
54#include <linux/memory.h>
55#include <linux/memory_hotplug.h>
cd9151e2 56#include <linux/percpu-defs.h>
55b3da98 57#include <linux/slab.h>
1cf6a6c8 58#include <linux/sysctl.h>
1775826c 59
1775826c
JF
60#include <asm/page.h>
61#include <asm/pgalloc.h>
62#include <asm/pgtable.h>
1775826c
JF
63#include <asm/tlb.h>
64
ecbf29cd
JF
65#include <asm/xen/hypervisor.h>
66#include <asm/xen/hypercall.h>
1ccbf534
JF
67
68#include <xen/xen.h>
ecbf29cd 69#include <xen/interface/xen.h>
1775826c 70#include <xen/interface/memory.h>
803eb047 71#include <xen/balloon.h>
1775826c
JF
72#include <xen/features.h>
73#include <xen/page.h>
ae4c51a5 74#include <xen/mem-reservation.h>
1775826c 75
1cf6a6c8
DV
76static int xen_hotplug_unpopulated;
77
78#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
79
1cf6a6c8
DV
80static struct ctl_table balloon_table[] = {
81 {
82 .procname = "hotplug_unpopulated",
83 .data = &xen_hotplug_unpopulated,
84 .maxlen = sizeof(int),
85 .mode = 0644,
86 .proc_handler = proc_dointvec_minmax,
eec4844f
MC
87 .extra1 = SYSCTL_ZERO,
88 .extra2 = SYSCTL_ONE,
1cf6a6c8
DV
89 },
90 { }
91};
92
93static struct ctl_table balloon_root[] = {
94 {
95 .procname = "balloon",
96 .mode = 0555,
97 .child = balloon_table,
98 },
99 { }
100};
101
102static struct ctl_table xen_root[] = {
103 {
104 .procname = "xen",
105 .mode = 0555,
106 .child = balloon_root,
107 },
108 { }
109};
110
111#endif
112
30756c62
JG
113/*
114 * Use one extent per PAGE_SIZE to avoid to break down the page into
115 * multiple frame.
116 */
117#define EXTENT_ORDER (fls(XEN_PFN_PER_PAGE) - 1)
118
95d2ac4a
DK
119/*
120 * balloon_process() state:
121 *
122 * BP_DONE: done or nothing to do,
b2ac6aa8 123 * BP_WAIT: wait to be rescheduled,
95d2ac4a
DK
124 * BP_EAGAIN: error, go to sleep,
125 * BP_ECANCELED: error, balloon operation canceled.
126 */
1775826c 127
95d2ac4a
DK
128enum bp_state {
129 BP_DONE,
b2ac6aa8 130 BP_WAIT,
95d2ac4a
DK
131 BP_EAGAIN,
132 BP_ECANCELED
1775826c
JF
133};
134
1775826c 135
1775826c 136static DEFINE_MUTEX(balloon_mutex);
1775826c 137
803eb047
DDG
138struct balloon_stats balloon_stats;
139EXPORT_SYMBOL_GPL(balloon_stats);
1775826c
JF
140
141/* We increase/decrease in batches which fit in a page */
3990dd27 142static xen_pfn_t frame_list[PAGE_SIZE / sizeof(xen_pfn_t)];
cd9151e2 143
1775826c 144
1775826c
JF
145/* List of ballooned pages, threaded through the mem_map array. */
146static LIST_HEAD(ballooned_pages);
1cf6a6c8 147static DECLARE_WAIT_QUEUE_HEAD(balloon_wq);
1775826c
JF
148
149/* Main work function, always executed in process context. */
150static void balloon_process(struct work_struct *work);
95170b2e 151static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
1775826c
JF
152
153/* When ballooning out (allocating memory to return to Xen) we don't really
154 want the kernel to try too hard since that can trigger the oom killer. */
155#define GFP_BALLOON \
156 (GFP_HIGHUSER | __GFP_NOWARN | __GFP_NORETRY | __GFP_NOMEMALLOC)
157
1775826c 158/* balloon_append: add the given page to the balloon. */
9be4d457 159static void __balloon_append(struct page *page)
1775826c
JF
160{
161 /* Lowmem is re-populated first, so highmem pages go at list tail. */
162 if (PageHighMem(page)) {
163 list_add_tail(&page->lru, &ballooned_pages);
164 balloon_stats.balloon_high++;
1775826c
JF
165 } else {
166 list_add(&page->lru, &ballooned_pages);
167 balloon_stats.balloon_low++;
168 }
1cf6a6c8 169 wake_up(&balloon_wq);
9be4d457 170}
3d65c948 171
9be4d457
JF
172static void balloon_append(struct page *page)
173{
174 __balloon_append(page);
1775826c
JF
175}
176
177/* balloon_retrieve: rescue a page from the balloon, if it is not empty. */
81b286e0 178static struct page *balloon_retrieve(bool require_lowmem)
1775826c
JF
179{
180 struct page *page;
181
182 if (list_empty(&ballooned_pages))
183 return NULL;
184
81b286e0
DV
185 page = list_entry(ballooned_pages.next, struct page, lru);
186 if (require_lowmem && PageHighMem(page))
187 return NULL;
1775826c
JF
188 list_del(&page->lru);
189
3dcc0571 190 if (PageHighMem(page))
1775826c 191 balloon_stats.balloon_high--;
3dcc0571 192 else
1775826c
JF
193 balloon_stats.balloon_low--;
194
195 return page;
196}
197
1775826c
JF
198static struct page *balloon_next_page(struct page *page)
199{
200 struct list_head *next = page->lru.next;
201 if (next == &ballooned_pages)
202 return NULL;
203 return list_entry(next, struct page, lru);
204}
205
95d2ac4a 206static enum bp_state update_schedule(enum bp_state state)
1775826c 207{
b2ac6aa8
DV
208 if (state == BP_WAIT)
209 return BP_WAIT;
210
fd8b7951
BO
211 if (state == BP_ECANCELED)
212 return BP_ECANCELED;
213
95d2ac4a
DK
214 if (state == BP_DONE) {
215 balloon_stats.schedule_delay = 1;
216 balloon_stats.retry_count = 1;
217 return BP_DONE;
218 }
219
95d2ac4a
DK
220 ++balloon_stats.retry_count;
221
222 if (balloon_stats.max_retry_count != RETRY_UNLIMITED &&
223 balloon_stats.retry_count > balloon_stats.max_retry_count) {
95d2ac4a
DK
224 balloon_stats.schedule_delay = 1;
225 balloon_stats.retry_count = 1;
226 return BP_ECANCELED;
227 }
228
229 balloon_stats.schedule_delay <<= 1;
230
231 if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
232 balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
233
234 return BP_EAGAIN;
1775826c
JF
235}
236
080e2be7 237#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
842775f1
RL
238static void release_memory_resource(struct resource *resource)
239{
240 if (!resource)
241 return;
242
243 /*
244 * No need to reset region to identity mapped since we now
245 * know that no I/O can be in this region
246 */
247 release_resource(resource);
248 kfree(resource);
249}
250
55b3da98
DV
251static struct resource *additional_memory_resource(phys_addr_t size)
252{
12366410
ID
253 struct resource *res;
254 int ret;
55b3da98
DV
255
256 res = kzalloc(sizeof(*res), GFP_KERNEL);
257 if (!res)
258 return NULL;
259
260 res->name = "System RAM";
782b8664 261 res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
55b3da98 262
12366410
ID
263 ret = allocate_resource(&iomem_resource, res,
264 size, 0, -1,
265 PAGES_PER_SECTION * PAGE_SIZE, NULL, NULL);
266 if (ret < 0) {
267 pr_err("Cannot allocate new System RAM resource\n");
268 kfree(res);
269 return NULL;
55b3da98
DV
270 }
271
dfd74a1e
RL
272#ifdef CONFIG_SPARSEMEM
273 {
274 unsigned long limit = 1UL << (MAX_PHYSMEM_BITS - PAGE_SHIFT);
275 unsigned long pfn = res->start >> PAGE_SHIFT;
276
277 if (pfn > limit) {
278 pr_err("New System RAM resource outside addressable RAM (%lu > %lu)\n",
279 pfn, limit);
280 release_memory_resource(res);
281 return NULL;
282 }
283 }
284#endif
285
55b3da98
DV
286 return res;
287}
288
b2ac6aa8 289static enum bp_state reserve_additional_memory(void)
080e2be7 290{
b2ac6aa8 291 long credit;
55b3da98 292 struct resource *resource;
080e2be7 293 int nid, rc;
55b3da98 294 unsigned long balloon_hotplug;
080e2be7 295
1cf6a6c8
DV
296 credit = balloon_stats.target_pages + balloon_stats.target_unpopulated
297 - balloon_stats.total_pages;
b2ac6aa8
DV
298
299 /*
300 * Already hotplugged enough pages? Wait for them to be
301 * onlined.
302 */
303 if (credit <= 0)
304 return BP_WAIT;
305
55b3da98
DV
306 balloon_hotplug = round_up(credit, PAGES_PER_SECTION);
307
308 resource = additional_memory_resource(balloon_hotplug * PAGE_SIZE);
309 if (!resource)
310 goto err;
311
312 nid = memory_add_physaddr_to_nid(resource->start);
080e2be7 313
3c56b3a1 314#ifdef CONFIG_XEN_HAVE_PVMMU
30756c62
JG
315 /*
316 * We don't support PV MMU when Linux and Xen is using
317 * different page granularity.
318 */
319 BUILD_BUG_ON(XEN_PAGE_SIZE != PAGE_SIZE);
320
3c56b3a1
JG
321 /*
322 * add_memory() will build page tables for the new memory so
323 * the p2m must contain invalid entries so the correct
324 * non-present PTEs will be written.
325 *
326 * If a failure occurs, the original (identity) p2m entries
327 * are not restored since this region is now known not to
328 * conflict with any devices.
329 */
330 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
331 unsigned long pfn, i;
332
55b3da98 333 pfn = PFN_DOWN(resource->start);
3c56b3a1
JG
334 for (i = 0; i < balloon_hotplug; i++) {
335 if (!set_phys_to_machine(pfn + i, INVALID_P2M_ENTRY)) {
336 pr_warn("set_phys_to_machine() failed, no memory added\n");
55b3da98 337 goto err;
3c56b3a1
JG
338 }
339 }
340 }
341#endif
342
703fc13a
VK
343 /*
344 * add_memory_resource() will call online_pages() which in its turn
345 * will call xen_online_page() callback causing deadlock if we don't
346 * release balloon_mutex here. Unlocking here is safe because the
347 * callers drop the mutex before trying again.
348 */
349 mutex_unlock(&balloon_mutex);
8df1d0e4
DH
350 /* add_memory_resource() requires the device_hotplug lock */
351 lock_device_hotplug();
f29d8e9c 352 rc = add_memory_resource(nid, resource);
8df1d0e4 353 unlock_device_hotplug();
703fc13a
VK
354 mutex_lock(&balloon_mutex);
355
080e2be7 356 if (rc) {
3dcf6367 357 pr_warn("Cannot add additional memory (%i)\n", rc);
55b3da98 358 goto err;
080e2be7
DK
359 }
360
de5a77d8 361 balloon_stats.total_pages += balloon_hotplug;
080e2be7 362
b2ac6aa8 363 return BP_WAIT;
55b3da98
DV
364 err:
365 release_memory_resource(resource);
366 return BP_ECANCELED;
080e2be7
DK
367}
368
a9cd410a 369static void xen_online_page(struct page *page, unsigned int order)
080e2be7 370{
a9cd410a
AK
371 unsigned long i, size = (1 << order);
372 unsigned long start_pfn = page_to_pfn(page);
373 struct page *p;
080e2be7 374
a9cd410a 375 pr_debug("Online %lu pages starting at pfn 0x%lx\n", size, start_pfn);
080e2be7 376 mutex_lock(&balloon_mutex);
a9cd410a
AK
377 for (i = 0; i < size; i++) {
378 p = pfn_to_page(start_pfn + i);
379 __online_page_set_limits(p);
77c4adf6 380 __SetPageOffline(p);
a9cd410a
AK
381 __balloon_append(p);
382 }
080e2be7
DK
383 mutex_unlock(&balloon_mutex);
384}
385
386static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
387{
388 if (val == MEM_ONLINE)
389 schedule_delayed_work(&balloon_worker, 0);
390
391 return NOTIFY_OK;
392}
393
394static struct notifier_block xen_memory_nb = {
395 .notifier_call = xen_memory_notifier,
396 .priority = 0
397};
398#else
b2ac6aa8 399static enum bp_state reserve_additional_memory(void)
1775826c 400{
de5a77d8 401 balloon_stats.target_pages = balloon_stats.current_pages;
1cf6a6c8 402 return BP_ECANCELED;
1775826c 403}
de5a77d8 404#endif /* CONFIG_XEN_BALLOON_MEMORY_HOTPLUG */
1775826c 405
de5a77d8 406static long current_credit(void)
080e2be7 407{
de5a77d8 408 return balloon_stats.target_pages - balloon_stats.current_pages;
080e2be7
DK
409}
410
de5a77d8 411static bool balloon_is_inflated(void)
080e2be7 412{
de5a77d8 413 return balloon_stats.balloon_low || balloon_stats.balloon_high;
080e2be7 414}
080e2be7 415
95d2ac4a 416static enum bp_state increase_reservation(unsigned long nr_pages)
1775826c 417{
95d2ac4a 418 int rc;
30756c62 419 unsigned long i;
1775826c 420 struct page *page;
1775826c
JF
421
422 if (nr_pages > ARRAY_SIZE(frame_list))
423 nr_pages = ARRAY_SIZE(frame_list);
424
9346c2a8 425 page = list_first_entry_or_null(&ballooned_pages, struct page, lru);
1775826c 426 for (i = 0; i < nr_pages; i++) {
95d2ac4a
DK
427 if (!page) {
428 nr_pages = i;
429 break;
430 }
30756c62 431
30756c62 432 frame_list[i] = page_to_xen_pfn(page);
1775826c
JF
433 page = balloon_next_page(page);
434 }
435
ae4c51a5 436 rc = xenmem_reservation_increase(nr_pages, frame_list);
40095de1 437 if (rc <= 0)
95d2ac4a 438 return BP_EAGAIN;
1775826c 439
bc2c0303 440 for (i = 0; i < rc; i++) {
b6f30679 441 page = balloon_retrieve(false);
1775826c
JF
442 BUG_ON(page == NULL);
443
ae4c51a5 444 xenmem_reservation_va_mapping_update(1, &page, &frame_list[i]);
1775826c
JF
445
446 /* Relinquish the page back to the allocator. */
77c4adf6 447 __ClearPageOffline(page);
709613ad 448 free_reserved_page(page);
1775826c
JF
449 }
450
bc2c0303 451 balloon_stats.current_pages += rc;
1775826c 452
95d2ac4a 453 return BP_DONE;
1775826c
JF
454}
455
b6f30679 456static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
1775826c 457{
95d2ac4a 458 enum bp_state state = BP_DONE;
30756c62
JG
459 unsigned long i;
460 struct page *page, *tmp;
1775826c 461 int ret;
30756c62 462 LIST_HEAD(pages);
1775826c
JF
463
464 if (nr_pages > ARRAY_SIZE(frame_list))
465 nr_pages = ARRAY_SIZE(frame_list);
466
467 for (i = 0; i < nr_pages; i++) {
fce92683
LN
468 page = alloc_page(gfp);
469 if (page == NULL) {
1775826c 470 nr_pages = i;
95d2ac4a 471 state = BP_EAGAIN;
1775826c
JF
472 break;
473 }
77c4adf6 474 __SetPageOffline(page);
709613ad 475 adjust_managed_page_count(page, -1);
ae4c51a5 476 xenmem_reservation_scrub_page(page);
30756c62 477 list_add(&page->lru, &pages);
09ed3d5b 478 }
1775826c 479
09ed3d5b
WL
480 /*
481 * Ensure that ballooned highmem pages don't have kmaps.
482 *
483 * Do this before changing the p2m as kmap_flush_unused()
484 * reads PTEs to obtain pages (and hence needs the original
485 * p2m entry).
486 */
487 kmap_flush_unused();
488
30756c62
JG
489 /*
490 * Setup the frame, update direct mapping, invalidate P2M,
491 * and add to balloon.
492 */
493 i = 0;
494 list_for_each_entry_safe(page, tmp, &pages, lru) {
30756c62 495 frame_list[i++] = xen_page_to_gfn(page);
1058a75f 496
ae4c51a5 497 xenmem_reservation_va_mapping_reset(1, &page);
30756c62 498
30756c62 499 list_del(&page->lru);
24f69373 500
09ed3d5b 501 balloon_append(page);
1775826c
JF
502 }
503
24f69373 504 flush_tlb_all();
2bad07ce 505
ae4c51a5 506 ret = xenmem_reservation_decrease(nr_pages, frame_list);
1775826c
JF
507 BUG_ON(ret != nr_pages);
508
509 balloon_stats.current_pages -= nr_pages;
1775826c 510
95d2ac4a 511 return state;
1775826c
JF
512}
513
514/*
929423fa 515 * As this is a work item it is guaranteed to run as a single instance only.
1775826c
JF
516 * We may of course race updates of the target counts (which are protected
517 * by the balloon lock), or with changes to the Xen hard limit, but we will
518 * recover from these in time.
519 */
520static void balloon_process(struct work_struct *work)
521{
95d2ac4a 522 enum bp_state state = BP_DONE;
1775826c
JF
523 long credit;
524
1775826c
JF
525
526 do {
929423fa
JG
527 mutex_lock(&balloon_mutex);
528
83be7e52 529 credit = current_credit();
95d2ac4a 530
080e2be7
DK
531 if (credit > 0) {
532 if (balloon_is_inflated())
533 state = increase_reservation(credit);
534 else
b2ac6aa8 535 state = reserve_additional_memory();
080e2be7 536 }
95d2ac4a 537
a1078e82
JG
538 if (credit < 0) {
539 long n_pages;
540
541 n_pages = min(-credit, si_mem_available());
542 state = decrease_reservation(n_pages, GFP_BALLOON);
543 if (state == BP_DONE && n_pages != -credit &&
544 n_pages < totalreserve_pages)
545 state = BP_EAGAIN;
546 }
95d2ac4a
DK
547
548 state = update_schedule(state);
1775826c 549
929423fa
JG
550 mutex_unlock(&balloon_mutex);
551
552 cond_resched();
553
95d2ac4a 554 } while (credit && state == BP_DONE);
1775826c
JF
555
556 /* Schedule more work if there is some still to be done. */
95d2ac4a
DK
557 if (state == BP_EAGAIN)
558 schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
1775826c
JF
559}
560
561/* Resets the Xen limit, sets new target, and kicks off processing. */
803eb047 562void balloon_set_new_target(unsigned long target)
1775826c
JF
563{
564 /* No need for lock. Not read-modify-write updates. */
1775826c 565 balloon_stats.target_pages = target;
95170b2e 566 schedule_delayed_work(&balloon_worker, 0);
1775826c 567}
803eb047 568EXPORT_SYMBOL_GPL(balloon_set_new_target);
1775826c 569
1cf6a6c8
DV
570static int add_ballooned_pages(int nr_pages)
571{
572 enum bp_state st;
573
574 if (xen_hotplug_unpopulated) {
575 st = reserve_additional_memory();
576 if (st != BP_ECANCELED) {
577 mutex_unlock(&balloon_mutex);
578 wait_event(balloon_wq,
579 !list_empty(&ballooned_pages));
580 mutex_lock(&balloon_mutex);
581 return 0;
582 }
583 }
584
a1078e82
JG
585 if (si_mem_available() < nr_pages)
586 return -ENOMEM;
587
1cf6a6c8
DV
588 st = decrease_reservation(nr_pages, GFP_USER);
589 if (st != BP_DONE)
590 return -ENOMEM;
591
592 return 0;
593}
594
b6f30679
KRW
595/**
596 * alloc_xenballooned_pages - get pages that have been ballooned out
597 * @nr_pages: Number of pages to get
598 * @pages: pages returned
599 * @return 0 on success, error otherwise
600 */
81b286e0 601int alloc_xenballooned_pages(int nr_pages, struct page **pages)
1775826c 602{
b6f30679 603 int pgno = 0;
e882dc9c 604 struct page *page;
1cf6a6c8
DV
605 int ret;
606
b6f30679 607 mutex_lock(&balloon_mutex);
1cf6a6c8
DV
608
609 balloon_stats.target_unpopulated += nr_pages;
610
b6f30679 611 while (pgno < nr_pages) {
81b286e0
DV
612 page = balloon_retrieve(true);
613 if (page) {
0266def9 614 __ClearPageOffline(page);
b6f30679 615 pages[pgno++] = page;
4a69c909 616#ifdef CONFIG_XEN_HAVE_PVMMU
30756c62
JG
617 /*
618 * We don't support PV MMU when Linux and Xen is using
619 * different page granularity.
620 */
621 BUILD_BUG_ON(XEN_PAGE_SIZE != PAGE_SIZE);
622
b194da25
BO
623 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
624 ret = xen_alloc_p2m_entry(page_to_pfn(page));
625 if (ret < 0)
626 goto out_undo;
627 }
4a69c909 628#endif
b6f30679 629 } else {
1cf6a6c8
DV
630 ret = add_ballooned_pages(nr_pages - pgno);
631 if (ret < 0)
b6f30679
KRW
632 goto out_undo;
633 }
1775826c 634 }
b6f30679
KRW
635 mutex_unlock(&balloon_mutex);
636 return 0;
637 out_undo:
b6f30679 638 mutex_unlock(&balloon_mutex);
1cf6a6c8
DV
639 free_xenballooned_pages(pgno, pages);
640 return ret;
1775826c 641}
b6f30679 642EXPORT_SYMBOL(alloc_xenballooned_pages);
1775826c 643
b6f30679
KRW
644/**
645 * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
646 * @nr_pages: Number of pages
647 * @pages: pages to return
648 */
e882dc9c 649void free_xenballooned_pages(int nr_pages, struct page **pages)
1775826c 650{
b6f30679 651 int i;
1775826c 652
b6f30679 653 mutex_lock(&balloon_mutex);
1775826c 654
b6f30679 655 for (i = 0; i < nr_pages; i++) {
0266def9
DH
656 if (pages[i]) {
657 __SetPageOffline(pages[i]);
b6f30679 658 balloon_append(pages[i]);
0266def9 659 }
b6f30679
KRW
660 }
661
1cf6a6c8
DV
662 balloon_stats.target_unpopulated -= nr_pages;
663
b6f30679 664 /* The balloon may be too large now. Shrink it if needed. */
83be7e52 665 if (current_credit())
b6f30679 666 schedule_delayed_work(&balloon_worker, 0);
1775826c 667
b6f30679
KRW
668 mutex_unlock(&balloon_mutex);
669}
670EXPORT_SYMBOL(free_xenballooned_pages);
1775826c 671
4fee9ad8 672#ifdef CONFIG_XEN_PV
8b5d44a5
DV
673static void __init balloon_add_region(unsigned long start_pfn,
674 unsigned long pages)
1775826c 675{
4dfe22f5 676 unsigned long pfn, extra_pfn_end;
1775826c
JF
677 struct page *page;
678
8b5d44a5
DV
679 /*
680 * If the amount of usable memory has been limited (e.g., with
681 * the 'mem' command line parameter), don't add pages beyond
682 * this limit.
683 */
684 extra_pfn_end = min(max_pfn, start_pfn + pages);
685
686 for (pfn = start_pfn; pfn < extra_pfn_end; pfn++) {
687 page = pfn_to_page(pfn);
688 /* totalram_pages and totalhigh_pages do not
689 include the boot-time balloon extension, so
690 don't subtract from it. */
c5ad81eb 691 __SetPageOffline(page);
8b5d44a5
DV
692 __balloon_append(page);
693 }
de5a77d8
DV
694
695 balloon_stats.total_pages += extra_pfn_end - start_pfn;
8b5d44a5 696}
4fee9ad8 697#endif
8b5d44a5
DV
698
699static int __init balloon_init(void)
700{
53d5522c 701 if (!xen_domain())
1775826c
JF
702 return -ENODEV;
703
283c0972 704 pr_info("Initialising balloon driver\n");
1775826c 705
4fee9ad8 706#ifdef CONFIG_XEN_PV
aa24411b
DV
707 balloon_stats.current_pages = xen_pv_domain()
708 ? min(xen_start_info->nr_pages - xen_released_pages, max_pfn)
c275a57f 709 : get_num_physpages();
4fee9ad8
VK
710#else
711 balloon_stats.current_pages = get_num_physpages();
712#endif
1775826c
JF
713 balloon_stats.target_pages = balloon_stats.current_pages;
714 balloon_stats.balloon_low = 0;
715 balloon_stats.balloon_high = 0;
de5a77d8 716 balloon_stats.total_pages = balloon_stats.current_pages;
1775826c 717
95d2ac4a
DK
718 balloon_stats.schedule_delay = 1;
719 balloon_stats.max_schedule_delay = 32;
720 balloon_stats.retry_count = 1;
a1078e82 721 balloon_stats.max_retry_count = 4;
1775826c 722
080e2be7 723#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
080e2be7
DK
724 set_online_page_callback(&xen_online_page);
725 register_memory_notifier(&xen_memory_nb);
1cf6a6c8 726 register_sysctl_table(xen_root);
080e2be7
DK
727#endif
728
4fee9ad8
VK
729#ifdef CONFIG_XEN_PV
730 {
731 int i;
732
733 /*
734 * Initialize the balloon with pages from the extra memory
735 * regions (see arch/x86/xen/setup.c).
736 */
737 for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++)
738 if (xen_extra_mem[i].n_pfns)
739 balloon_add_region(xen_extra_mem[i].start_pfn,
740 xen_extra_mem[i].n_pfns);
741 }
742#endif
1775826c 743
96edd61d
JG
744 /* Init the xen-balloon driver. */
745 xen_balloon_init();
746
1775826c
JF
747 return 0;
748}
1775826c 749subsys_initcall(balloon_init);