blob: c8aab4e97833af69d91bb9a67b5d8ccc5f8ce6c4 [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
39#include <linux/kernel.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070040#include <linux/sched.h>
41#include <linux/errno.h>
Paul Gortmaker72ee5112011-07-03 16:20:57 -040042#include <linux/module.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070043#include <linux/mm.h>
44#include <linux/bootmem.h>
45#include <linux/pagemap.h>
46#include <linux/highmem.h>
47#include <linux/mutex.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070048#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/gfp.h>
Daniel Kiper080e2be2011-07-25 17:12:06 -070050#include <linux/notifier.h>
51#include <linux/memory.h>
52#include <linux/memory_hotplug.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070053
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070054#include <asm/page.h>
55#include <asm/pgalloc.h>
56#include <asm/pgtable.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070057#include <asm/tlb.h>
58
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080059#include <asm/xen/hypervisor.h>
60#include <asm/xen/hypercall.h>
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070061
62#include <xen/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080063#include <xen/interface/xen.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070064#include <xen/interface/memory.h>
Daniel De Graaf803eb042011-03-14 11:29:37 -040065#include <xen/balloon.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070066#include <xen/features.h>
67#include <xen/page.h>
68
Daniel Kiper95d2ac42011-03-08 22:48:24 +010069/*
70 * balloon_process() state:
71 *
72 * BP_DONE: done or nothing to do,
73 * BP_EAGAIN: error, go to sleep,
74 * BP_ECANCELED: error, balloon operation canceled.
75 */
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070076
Daniel Kiper95d2ac42011-03-08 22:48:24 +010077enum bp_state {
78 BP_DONE,
79 BP_EAGAIN,
80 BP_ECANCELED
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070081};
82
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070083
84static DEFINE_MUTEX(balloon_mutex);
85
Daniel De Graaf803eb042011-03-14 11:29:37 -040086struct balloon_stats balloon_stats;
87EXPORT_SYMBOL_GPL(balloon_stats);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070088
89/* We increase/decrease in batches which fit in a page */
Ian Campbell965c0aa2012-10-17 09:39:16 +010090static xen_pfn_t frame_list[PAGE_SIZE / sizeof(unsigned long)];
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070091
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070092/* List of ballooned pages, threaded through the mem_map array. */
93static LIST_HEAD(ballooned_pages);
94
95/* Main work function, always executed in process context. */
96static void balloon_process(struct work_struct *work);
Daniel Kiper95170b22011-03-08 22:47:39 +010097static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070098
99/* When ballooning out (allocating memory to return to Xen) we don't really
100 want the kernel to try too hard since that can trigger the oom killer. */
101#define GFP_BALLOON \
102 (GFP_HIGHUSER | __GFP_NOWARN | __GFP_NORETRY | __GFP_NOMEMALLOC)
103
104static void scrub_page(struct page *page)
105{
106#ifdef CONFIG_XEN_SCRUB_PAGES
Jeremy Fitzhardinge26a3e992008-11-17 09:35:00 -0800107 clear_highpage(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700108#endif
109}
110
111/* balloon_append: add the given page to the balloon. */
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700112static void __balloon_append(struct page *page)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700113{
114 /* Lowmem is re-populated first, so highmem pages go at list tail. */
115 if (PageHighMem(page)) {
116 list_add_tail(&page->lru, &ballooned_pages);
117 balloon_stats.balloon_high++;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700118 } else {
119 list_add(&page->lru, &ballooned_pages);
120 balloon_stats.balloon_low++;
121 }
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700122}
Gianluca Guida3d65c942009-07-30 22:54:36 +0100123
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700124static void balloon_append(struct page *page)
125{
126 __balloon_append(page);
Jiang Liu3dcc0572013-07-03 15:03:21 -0700127 adjust_managed_page_count(page, -1);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700128}
129
130/* balloon_retrieve: rescue a page from the balloon, if it is not empty. */
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400131static struct page *balloon_retrieve(bool prefer_highmem)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700132{
133 struct page *page;
134
135 if (list_empty(&ballooned_pages))
136 return NULL;
137
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400138 if (prefer_highmem)
139 page = list_entry(ballooned_pages.prev, struct page, lru);
140 else
141 page = list_entry(ballooned_pages.next, struct page, lru);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700142 list_del(&page->lru);
143
Jiang Liu3dcc0572013-07-03 15:03:21 -0700144 if (PageHighMem(page))
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700145 balloon_stats.balloon_high--;
Jiang Liu3dcc0572013-07-03 15:03:21 -0700146 else
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700147 balloon_stats.balloon_low--;
148
Jiang Liu3dcc0572013-07-03 15:03:21 -0700149 adjust_managed_page_count(page, 1);
Gianluca Guida3d65c942009-07-30 22:54:36 +0100150
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700151 return page;
152}
153
154static struct page *balloon_first_page(void)
155{
156 if (list_empty(&ballooned_pages))
157 return NULL;
158 return list_entry(ballooned_pages.next, struct page, lru);
159}
160
161static 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{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100171 if (state == BP_DONE) {
172 balloon_stats.schedule_delay = 1;
173 balloon_stats.retry_count = 1;
174 return BP_DONE;
175 }
176
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100177 ++balloon_stats.retry_count;
178
179 if (balloon_stats.max_retry_count != RETRY_UNLIMITED &&
180 balloon_stats.retry_count > balloon_stats.max_retry_count) {
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100181 balloon_stats.schedule_delay = 1;
182 balloon_stats.retry_count = 1;
183 return BP_ECANCELED;
184 }
185
186 balloon_stats.schedule_delay <<= 1;
187
188 if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
189 balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
190
191 return BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700192}
193
Daniel Kiper080e2be2011-07-25 17:12:06 -0700194#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
195static long current_credit(void)
196{
197 return balloon_stats.target_pages - balloon_stats.current_pages -
198 balloon_stats.hotplug_pages;
199}
200
201static bool balloon_is_inflated(void)
202{
203 if (balloon_stats.balloon_low || balloon_stats.balloon_high ||
204 balloon_stats.balloon_hotplug)
205 return true;
206 else
207 return false;
208}
209
210/*
211 * reserve_additional_memory() adds memory region of size >= credit above
212 * max_pfn. New region is section aligned and size is modified to be multiple
213 * of section size. Those features allow optimal use of address space and
214 * establish proper alignment when this function is called first time after
215 * boot (last section not fully populated at boot time contains unused memory
216 * pages with PG_reserved bit not set; online_pages_range() does not allow page
217 * onlining in whole range if first onlined page does not have PG_reserved
218 * bit set). Real size of added memory is established at page onlining stage.
219 */
220
221static enum bp_state reserve_additional_memory(long credit)
222{
223 int nid, rc;
224 u64 hotplug_start_paddr;
225 unsigned long balloon_hotplug = credit;
226
227 hotplug_start_paddr = PFN_PHYS(SECTION_ALIGN_UP(max_pfn));
228 balloon_hotplug = round_up(balloon_hotplug, PAGES_PER_SECTION);
229 nid = memory_add_physaddr_to_nid(hotplug_start_paddr);
230
231 rc = add_memory(nid, hotplug_start_paddr, balloon_hotplug << PAGE_SHIFT);
232
233 if (rc) {
234 pr_info("xen_balloon: %s: add_memory() failed: %i\n", __func__, rc);
235 return BP_EAGAIN;
236 }
237
238 balloon_hotplug -= credit;
239
240 balloon_stats.hotplug_pages += credit;
241 balloon_stats.balloon_hotplug = balloon_hotplug;
242
243 return BP_DONE;
244}
245
246static void xen_online_page(struct page *page)
247{
248 __online_page_set_limits(page);
249
250 mutex_lock(&balloon_mutex);
251
252 __balloon_append(page);
253
254 if (balloon_stats.hotplug_pages)
255 --balloon_stats.hotplug_pages;
256 else
257 --balloon_stats.balloon_hotplug;
258
259 mutex_unlock(&balloon_mutex);
260}
261
262static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
263{
264 if (val == MEM_ONLINE)
265 schedule_delayed_work(&balloon_worker, 0);
266
267 return NOTIFY_OK;
268}
269
270static struct notifier_block xen_memory_nb = {
271 .notifier_call = xen_memory_notifier,
272 .priority = 0
273};
274#else
Daniel Kiper83be7e52011-03-28 11:34:10 +0200275static long current_credit(void)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700276{
Ian Campbellbc2c0302009-06-05 11:58:37 +0100277 unsigned long target = balloon_stats.target_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700278
279 target = min(target,
280 balloon_stats.current_pages +
281 balloon_stats.balloon_low +
282 balloon_stats.balloon_high);
283
Daniel Kiper83be7e52011-03-28 11:34:10 +0200284 return target - balloon_stats.current_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700285}
286
Daniel Kiper080e2be2011-07-25 17:12:06 -0700287static bool balloon_is_inflated(void)
288{
289 if (balloon_stats.balloon_low || balloon_stats.balloon_high)
290 return true;
291 else
292 return false;
293}
294
295static enum bp_state reserve_additional_memory(long credit)
296{
297 balloon_stats.target_pages = balloon_stats.current_pages;
298 return BP_DONE;
299}
300#endif /* CONFIG_XEN_BALLOON_MEMORY_HOTPLUG */
301
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100302static enum bp_state increase_reservation(unsigned long nr_pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700303{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100304 int rc;
Jeremy Fitzhardinge2f70e0a2010-09-02 23:11:17 -0700305 unsigned long pfn, i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700306 struct page *page;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700307 struct xen_memory_reservation reservation = {
308 .address_bits = 0,
309 .extent_order = 0,
310 .domid = DOMID_SELF
311 };
312
Daniel Kiper080e2be2011-07-25 17:12:06 -0700313#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
314 if (!balloon_stats.balloon_low && !balloon_stats.balloon_high) {
315 nr_pages = min(nr_pages, balloon_stats.balloon_hotplug);
316 balloon_stats.hotplug_pages += nr_pages;
317 balloon_stats.balloon_hotplug -= nr_pages;
318 return BP_DONE;
319 }
320#endif
321
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700322 if (nr_pages > ARRAY_SIZE(frame_list))
323 nr_pages = ARRAY_SIZE(frame_list);
324
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700325 page = balloon_first_page();
326 for (i = 0; i < nr_pages; i++) {
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100327 if (!page) {
328 nr_pages = i;
329 break;
330 }
Joe Perchesa419aef2009-08-18 11:18:35 -0700331 frame_list[i] = page_to_pfn(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700332 page = balloon_next_page(page);
333 }
334
Isaku Yamahataa90971e2008-05-26 23:31:14 +0100335 set_xen_guest_handle(reservation.extent_start, frame_list);
Jeremy Fitzhardingefde28e82008-07-24 16:28:00 -0700336 reservation.nr_extents = nr_pages;
337 rc = HYPERVISOR_memory_op(XENMEM_populate_physmap, &reservation);
Konrad Rzeszutek Wilk40095de2011-03-14 11:42:40 -0400338 if (rc <= 0)
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100339 return BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700340
Ian Campbellbc2c0302009-06-05 11:58:37 +0100341 for (i = 0; i < rc; i++) {
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400342 page = balloon_retrieve(false);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700343 BUG_ON(page == NULL);
344
345 pfn = page_to_pfn(page);
346 BUG_ON(!xen_feature(XENFEAT_auto_translated_physmap) &&
347 phys_to_machine_mapping_valid(pfn));
348
349 set_phys_to_machine(pfn, frame_list[i]);
350
Ian Campbellc2374bf2012-10-03 12:17:50 +0100351#ifdef CONFIG_XEN_HAVE_PVMMU
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700352 /* Link back into the page tables if not highmem. */
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200353 if (xen_pv_domain() && !PageHighMem(page)) {
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700354 int ret;
355 ret = HYPERVISOR_update_va_mapping(
356 (unsigned long)__va(pfn << PAGE_SHIFT),
357 mfn_pte(frame_list[i], PAGE_KERNEL),
358 0);
359 BUG_ON(ret);
360 }
Ian Campbellc2374bf2012-10-03 12:17:50 +0100361#endif
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700362
363 /* Relinquish the page back to the allocator. */
Jiang Liu3dcc0572013-07-03 15:03:21 -0700364 __free_reserved_page(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700365 }
366
Ian Campbellbc2c0302009-06-05 11:58:37 +0100367 balloon_stats.current_pages += rc;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700368
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100369 return BP_DONE;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700370}
371
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400372static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700373{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100374 enum bp_state state = BP_DONE;
Jeremy Fitzhardinge2f70e0a2010-09-02 23:11:17 -0700375 unsigned long pfn, i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700376 struct page *page;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700377 int ret;
378 struct xen_memory_reservation reservation = {
379 .address_bits = 0,
380 .extent_order = 0,
381 .domid = DOMID_SELF
382 };
383
Daniel Kiper080e2be2011-07-25 17:12:06 -0700384#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
385 if (balloon_stats.hotplug_pages) {
386 nr_pages = min(nr_pages, balloon_stats.hotplug_pages);
387 balloon_stats.hotplug_pages -= nr_pages;
388 balloon_stats.balloon_hotplug += nr_pages;
389 return BP_DONE;
390 }
391#endif
392
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700393 if (nr_pages > ARRAY_SIZE(frame_list))
394 nr_pages = ARRAY_SIZE(frame_list);
395
396 for (i = 0; i < nr_pages; i++) {
Lisa Nguyenfce92682013-05-15 22:59:40 -0700397 page = alloc_page(gfp);
398 if (page == NULL) {
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700399 nr_pages = i;
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100400 state = BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700401 break;
402 }
403
404 pfn = page_to_pfn(page);
405 frame_list[i] = pfn_to_mfn(pfn);
406
407 scrub_page(page);
Dan Magenheimer1058a752009-01-22 14:36:08 -0800408
Ian Campbellc2374bf2012-10-03 12:17:50 +0100409#ifdef CONFIG_XEN_HAVE_PVMMU
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200410 if (xen_pv_domain() && !PageHighMem(page)) {
Ian Campbellff4ce8c2009-01-23 16:26:21 +0000411 ret = HYPERVISOR_update_va_mapping(
412 (unsigned long)__va(pfn << PAGE_SHIFT),
413 __pte_ma(0), 0);
414 BUG_ON(ret);
Ruslan Pisareve882dc92011-07-26 14:15:59 +0300415 }
Ian Campbellc2374bf2012-10-03 12:17:50 +0100416#endif
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700417 }
418
419 /* Ensure that ballooned highmem pages don't have kmaps. */
420 kmap_flush_unused();
421 flush_tlb_all();
422
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700423 /* No more mappings: invalidate P2M and add to balloon. */
424 for (i = 0; i < nr_pages; i++) {
425 pfn = mfn_to_pfn(frame_list[i]);
Konrad Rzeszutek Wilk6eaa4122011-01-18 20:09:41 -0500426 __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700427 balloon_append(pfn_to_page(pfn));
428 }
429
Isaku Yamahataa90971e2008-05-26 23:31:14 +0100430 set_xen_guest_handle(reservation.extent_start, frame_list);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700431 reservation.nr_extents = nr_pages;
432 ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation, &reservation);
433 BUG_ON(ret != nr_pages);
434
435 balloon_stats.current_pages -= nr_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700436
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100437 return state;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700438}
439
440/*
441 * We avoid multiple worker processes conflicting via the balloon mutex.
442 * We may of course race updates of the target counts (which are protected
443 * by the balloon lock), or with changes to the Xen hard limit, but we will
444 * recover from these in time.
445 */
446static void balloon_process(struct work_struct *work)
447{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100448 enum bp_state state = BP_DONE;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700449 long credit;
450
451 mutex_lock(&balloon_mutex);
452
453 do {
Daniel Kiper83be7e52011-03-28 11:34:10 +0200454 credit = current_credit();
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100455
Daniel Kiper080e2be2011-07-25 17:12:06 -0700456 if (credit > 0) {
457 if (balloon_is_inflated())
458 state = increase_reservation(credit);
459 else
460 state = reserve_additional_memory(credit);
461 }
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100462
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700463 if (credit < 0)
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400464 state = decrease_reservation(-credit, GFP_BALLOON);
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100465
466 state = update_schedule(state);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700467
468#ifndef CONFIG_PREEMPT
469 if (need_resched())
470 schedule();
471#endif
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100472 } while (credit && state == BP_DONE);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700473
474 /* Schedule more work if there is some still to be done. */
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100475 if (state == BP_EAGAIN)
476 schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700477
478 mutex_unlock(&balloon_mutex);
479}
480
481/* Resets the Xen limit, sets new target, and kicks off processing. */
Daniel De Graaf803eb042011-03-14 11:29:37 -0400482void balloon_set_new_target(unsigned long target)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700483{
484 /* No need for lock. Not read-modify-write updates. */
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700485 balloon_stats.target_pages = target;
Daniel Kiper95170b22011-03-08 22:47:39 +0100486 schedule_delayed_work(&balloon_worker, 0);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700487}
Daniel De Graaf803eb042011-03-14 11:29:37 -0400488EXPORT_SYMBOL_GPL(balloon_set_new_target);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700489
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400490/**
491 * alloc_xenballooned_pages - get pages that have been ballooned out
492 * @nr_pages: Number of pages to get
493 * @pages: pages returned
Daniel De Graaf72e9cf22011-10-19 17:59:37 -0400494 * @highmem: allow highmem pages
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400495 * @return 0 on success, error otherwise
496 */
Stefano Stabellini693394b2011-09-29 11:57:55 +0100497int alloc_xenballooned_pages(int nr_pages, struct page **pages, bool highmem)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700498{
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400499 int pgno = 0;
Ruslan Pisareve882dc92011-07-26 14:15:59 +0300500 struct page *page;
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400501 mutex_lock(&balloon_mutex);
502 while (pgno < nr_pages) {
Stefano Stabellini693394b2011-09-29 11:57:55 +0100503 page = balloon_retrieve(highmem);
Daniel De Graaf72e9cf22011-10-19 17:59:37 -0400504 if (page && (highmem || !PageHighMem(page))) {
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400505 pages[pgno++] = page;
506 } else {
507 enum bp_state st;
Stefano Stabellini693394b2011-09-29 11:57:55 +0100508 if (page)
509 balloon_append(page);
510 st = decrease_reservation(nr_pages - pgno,
511 highmem ? GFP_HIGHUSER : GFP_USER);
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400512 if (st != BP_DONE)
513 goto out_undo;
514 }
515 }
516 mutex_unlock(&balloon_mutex);
517 return 0;
518 out_undo:
519 while (pgno)
520 balloon_append(pages[--pgno]);
521 /* Free the memory back to the kernel soon */
522 schedule_delayed_work(&balloon_worker, 0);
523 mutex_unlock(&balloon_mutex);
524 return -ENOMEM;
525}
526EXPORT_SYMBOL(alloc_xenballooned_pages);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700527
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400528/**
529 * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
530 * @nr_pages: Number of pages
531 * @pages: pages to return
532 */
Ruslan Pisareve882dc92011-07-26 14:15:59 +0300533void free_xenballooned_pages(int nr_pages, struct page **pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700534{
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400535 int i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700536
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400537 mutex_lock(&balloon_mutex);
538
539 for (i = 0; i < nr_pages; i++) {
540 if (pages[i])
541 balloon_append(pages[i]);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700542 }
543
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400544 /* The balloon may be too large now. Shrink it if needed. */
Daniel Kiper83be7e52011-03-28 11:34:10 +0200545 if (current_credit())
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400546 schedule_delayed_work(&balloon_worker, 0);
547
548 mutex_unlock(&balloon_mutex);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700549}
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400550EXPORT_SYMBOL(free_xenballooned_pages);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700551
David Vrabel8b5d44a2011-09-28 17:46:34 +0100552static void __init balloon_add_region(unsigned long start_pfn,
553 unsigned long pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700554{
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200555 unsigned long pfn, extra_pfn_end;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700556 struct page *page;
557
David Vrabel8b5d44a2011-09-28 17:46:34 +0100558 /*
559 * If the amount of usable memory has been limited (e.g., with
560 * the 'mem' command line parameter), don't add pages beyond
561 * this limit.
562 */
563 extra_pfn_end = min(max_pfn, start_pfn + pages);
564
565 for (pfn = start_pfn; pfn < extra_pfn_end; pfn++) {
566 page = pfn_to_page(pfn);
567 /* totalram_pages and totalhigh_pages do not
568 include the boot-time balloon extension, so
569 don't subtract from it. */
570 __balloon_append(page);
571 }
572}
573
574static int __init balloon_init(void)
575{
576 int i;
577
Stefano Stabellini53d55222010-12-02 17:55:05 +0000578 if (!xen_domain())
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700579 return -ENODEV;
580
Daniel De Graaf803eb042011-03-14 11:29:37 -0400581 pr_info("xen/balloon: Initialising balloon driver.\n");
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700582
David Vrabelaa244112011-09-28 17:46:32 +0100583 balloon_stats.current_pages = xen_pv_domain()
584 ? min(xen_start_info->nr_pages - xen_released_pages, max_pfn)
585 : max_pfn;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700586 balloon_stats.target_pages = balloon_stats.current_pages;
587 balloon_stats.balloon_low = 0;
588 balloon_stats.balloon_high = 0;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700589
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100590 balloon_stats.schedule_delay = 1;
591 balloon_stats.max_schedule_delay = 32;
592 balloon_stats.retry_count = 1;
Konrad Rzeszutek Wilk40095de2011-03-14 11:42:40 -0400593 balloon_stats.max_retry_count = RETRY_UNLIMITED;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700594
Daniel Kiper080e2be2011-07-25 17:12:06 -0700595#ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
596 balloon_stats.hotplug_pages = 0;
597 balloon_stats.balloon_hotplug = 0;
598
599 set_online_page_callback(&xen_online_page);
600 register_memory_notifier(&xen_memory_nb);
601#endif
602
Jeremy Fitzhardinge2a4c92f2010-12-02 15:30:06 -0800603 /*
David Vrabelb1cbf9b2011-09-28 17:46:33 +0100604 * Initialize the balloon with pages from the extra memory
David Vrabel8b5d44a2011-09-28 17:46:34 +0100605 * regions (see arch/x86/xen/setup.c).
Jeremy Fitzhardinge2a4c92f2010-12-02 15:30:06 -0800606 */
David Vrabel8b5d44a2011-09-28 17:46:34 +0100607 for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++)
608 if (xen_extra_mem[i].size)
609 balloon_add_region(PFN_UP(xen_extra_mem[i].start),
610 PFN_DOWN(xen_extra_mem[i].size));
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700611
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700612 return 0;
613}
614
615subsys_initcall(balloon_init);
616
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700617MODULE_LICENSE("GPL");