blob: f54290baa3dbd84317350a41aaab720649dc1baf [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
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation; or, when distributed
11 * separately from the Linux kernel or incorporated into other
12 * software packages, subject to the following license:
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this source file (the "Software"), to deal in the Software without
16 * restriction, including without limitation the rights to use, copy, modify,
17 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
18 * and to permit persons to whom the Software is furnished to do so, subject to
19 * the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30 * IN THE SOFTWARE.
31 */
32
33#include <linux/kernel.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070034#include <linux/sched.h>
35#include <linux/errno.h>
36#include <linux/mm.h>
37#include <linux/bootmem.h>
38#include <linux/pagemap.h>
39#include <linux/highmem.h>
40#include <linux/mutex.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070041#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/gfp.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070043
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070044#include <asm/page.h>
45#include <asm/pgalloc.h>
46#include <asm/pgtable.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070047#include <asm/tlb.h>
Jeremy Fitzhardinge66946f62010-09-14 10:32:32 -070048#include <asm/e820.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070049
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080050#include <asm/xen/hypervisor.h>
51#include <asm/xen/hypercall.h>
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070052
53#include <xen/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080054#include <xen/interface/xen.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070055#include <xen/interface/memory.h>
Daniel De Graaf803eb042011-03-14 11:29:37 -040056#include <xen/balloon.h>
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070057#include <xen/features.h>
58#include <xen/page.h>
59
Daniel Kiper95d2ac42011-03-08 22:48:24 +010060/*
61 * balloon_process() state:
62 *
63 * BP_DONE: done or nothing to do,
64 * BP_EAGAIN: error, go to sleep,
65 * BP_ECANCELED: error, balloon operation canceled.
66 */
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070067
Daniel Kiper95d2ac42011-03-08 22:48:24 +010068enum bp_state {
69 BP_DONE,
70 BP_EAGAIN,
71 BP_ECANCELED
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070072};
73
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070074
75static DEFINE_MUTEX(balloon_mutex);
76
Daniel De Graaf803eb042011-03-14 11:29:37 -040077struct balloon_stats balloon_stats;
78EXPORT_SYMBOL_GPL(balloon_stats);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070079
80/* We increase/decrease in batches which fit in a page */
81static unsigned long frame_list[PAGE_SIZE / sizeof(unsigned long)];
82
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070083#ifdef CONFIG_HIGHMEM
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070084#define inc_totalhigh_pages() (totalhigh_pages++)
85#define dec_totalhigh_pages() (totalhigh_pages--)
86#else
87#define inc_totalhigh_pages() do {} while(0)
88#define dec_totalhigh_pages() do {} while(0)
89#endif
90
91/* List of ballooned pages, threaded through the mem_map array. */
92static LIST_HEAD(ballooned_pages);
93
94/* Main work function, always executed in process context. */
95static void balloon_process(struct work_struct *work);
Daniel Kiper95170b22011-03-08 22:47:39 +010096static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -070097
98/* When ballooning out (allocating memory to return to Xen) we don't really
99 want the kernel to try too hard since that can trigger the oom killer. */
100#define GFP_BALLOON \
101 (GFP_HIGHUSER | __GFP_NOWARN | __GFP_NORETRY | __GFP_NOMEMALLOC)
102
103static void scrub_page(struct page *page)
104{
105#ifdef CONFIG_XEN_SCRUB_PAGES
Jeremy Fitzhardinge26a3e992008-11-17 09:35:00 -0800106 clear_highpage(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700107#endif
108}
109
110/* balloon_append: add the given page to the balloon. */
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700111static void __balloon_append(struct page *page)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700112{
113 /* Lowmem is re-populated first, so highmem pages go at list tail. */
114 if (PageHighMem(page)) {
115 list_add_tail(&page->lru, &ballooned_pages);
116 balloon_stats.balloon_high++;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700117 } else {
118 list_add(&page->lru, &ballooned_pages);
119 balloon_stats.balloon_low++;
120 }
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700121}
Gianluca Guida3d65c942009-07-30 22:54:36 +0100122
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700123static void balloon_append(struct page *page)
124{
125 __balloon_append(page);
Daniel Kiper09ca1322011-03-28 11:35:59 +0200126 if (PageHighMem(page))
127 dec_totalhigh_pages();
Gianluca Guida3d65c942009-07-30 22:54:36 +0100128 totalram_pages--;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700129}
130
131/* balloon_retrieve: rescue a page from the balloon, if it is not empty. */
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400132static struct page *balloon_retrieve(bool prefer_highmem)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700133{
134 struct page *page;
135
136 if (list_empty(&ballooned_pages))
137 return NULL;
138
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400139 if (prefer_highmem)
140 page = list_entry(ballooned_pages.prev, struct page, lru);
141 else
142 page = list_entry(ballooned_pages.next, struct page, lru);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700143 list_del(&page->lru);
144
145 if (PageHighMem(page)) {
146 balloon_stats.balloon_high--;
147 inc_totalhigh_pages();
148 }
149 else
150 balloon_stats.balloon_low--;
151
Gianluca Guida3d65c942009-07-30 22:54:36 +0100152 totalram_pages++;
153
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700154 return page;
155}
156
157static struct page *balloon_first_page(void)
158{
159 if (list_empty(&ballooned_pages))
160 return NULL;
161 return list_entry(ballooned_pages.next, struct page, lru);
162}
163
164static struct page *balloon_next_page(struct page *page)
165{
166 struct list_head *next = page->lru.next;
167 if (next == &ballooned_pages)
168 return NULL;
169 return list_entry(next, struct page, lru);
170}
171
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100172static enum bp_state update_schedule(enum bp_state state)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700173{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100174 if (state == BP_DONE) {
175 balloon_stats.schedule_delay = 1;
176 balloon_stats.retry_count = 1;
177 return BP_DONE;
178 }
179
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100180 ++balloon_stats.retry_count;
181
182 if (balloon_stats.max_retry_count != RETRY_UNLIMITED &&
183 balloon_stats.retry_count > balloon_stats.max_retry_count) {
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100184 balloon_stats.schedule_delay = 1;
185 balloon_stats.retry_count = 1;
186 return BP_ECANCELED;
187 }
188
189 balloon_stats.schedule_delay <<= 1;
190
191 if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
192 balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
193
194 return BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700195}
196
Daniel Kiper83be7e52011-03-28 11:34:10 +0200197static long current_credit(void)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700198{
Ian Campbellbc2c0302009-06-05 11:58:37 +0100199 unsigned long target = balloon_stats.target_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700200
201 target = min(target,
202 balloon_stats.current_pages +
203 balloon_stats.balloon_low +
204 balloon_stats.balloon_high);
205
Daniel Kiper83be7e52011-03-28 11:34:10 +0200206 return target - balloon_stats.current_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700207}
208
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100209static enum bp_state increase_reservation(unsigned long nr_pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700210{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100211 int rc;
Jeremy Fitzhardinge2f70e0a2010-09-02 23:11:17 -0700212 unsigned long pfn, i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700213 struct page *page;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700214 struct xen_memory_reservation reservation = {
215 .address_bits = 0,
216 .extent_order = 0,
217 .domid = DOMID_SELF
218 };
219
220 if (nr_pages > ARRAY_SIZE(frame_list))
221 nr_pages = ARRAY_SIZE(frame_list);
222
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700223 page = balloon_first_page();
224 for (i = 0; i < nr_pages; i++) {
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100225 if (!page) {
226 nr_pages = i;
227 break;
228 }
Joe Perchesa419aef2009-08-18 11:18:35 -0700229 frame_list[i] = page_to_pfn(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700230 page = balloon_next_page(page);
231 }
232
Isaku Yamahataa90971e2008-05-26 23:31:14 +0100233 set_xen_guest_handle(reservation.extent_start, frame_list);
Jeremy Fitzhardingefde28e82008-07-24 16:28:00 -0700234 reservation.nr_extents = nr_pages;
235 rc = HYPERVISOR_memory_op(XENMEM_populate_physmap, &reservation);
Konrad Rzeszutek Wilk40095de2011-03-14 11:42:40 -0400236 if (rc <= 0)
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100237 return BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700238
Ian Campbellbc2c0302009-06-05 11:58:37 +0100239 for (i = 0; i < rc; i++) {
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400240 page = balloon_retrieve(false);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700241 BUG_ON(page == NULL);
242
243 pfn = page_to_pfn(page);
244 BUG_ON(!xen_feature(XENFEAT_auto_translated_physmap) &&
245 phys_to_machine_mapping_valid(pfn));
246
247 set_phys_to_machine(pfn, frame_list[i]);
248
249 /* Link back into the page tables if not highmem. */
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200250 if (xen_pv_domain() && !PageHighMem(page)) {
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700251 int ret;
252 ret = HYPERVISOR_update_va_mapping(
253 (unsigned long)__va(pfn << PAGE_SHIFT),
254 mfn_pte(frame_list[i], PAGE_KERNEL),
255 0);
256 BUG_ON(ret);
257 }
258
259 /* Relinquish the page back to the allocator. */
260 ClearPageReserved(page);
261 init_page_count(page);
262 __free_page(page);
263 }
264
Ian Campbellbc2c0302009-06-05 11:58:37 +0100265 balloon_stats.current_pages += rc;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700266
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100267 return BP_DONE;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700268}
269
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400270static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700271{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100272 enum bp_state state = BP_DONE;
Jeremy Fitzhardinge2f70e0a2010-09-02 23:11:17 -0700273 unsigned long pfn, i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700274 struct page *page;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700275 int ret;
276 struct xen_memory_reservation reservation = {
277 .address_bits = 0,
278 .extent_order = 0,
279 .domid = DOMID_SELF
280 };
281
282 if (nr_pages > ARRAY_SIZE(frame_list))
283 nr_pages = ARRAY_SIZE(frame_list);
284
285 for (i = 0; i < nr_pages; i++) {
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400286 if ((page = alloc_page(gfp)) == NULL) {
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700287 nr_pages = i;
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100288 state = BP_EAGAIN;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700289 break;
290 }
291
292 pfn = page_to_pfn(page);
293 frame_list[i] = pfn_to_mfn(pfn);
294
295 scrub_page(page);
Dan Magenheimer1058a752009-01-22 14:36:08 -0800296
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200297 if (xen_pv_domain() && !PageHighMem(page)) {
Ian Campbellff4ce8c2009-01-23 16:26:21 +0000298 ret = HYPERVISOR_update_va_mapping(
299 (unsigned long)__va(pfn << PAGE_SHIFT),
300 __pte_ma(0), 0);
301 BUG_ON(ret);
302 }
303
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700304 }
305
306 /* Ensure that ballooned highmem pages don't have kmaps. */
307 kmap_flush_unused();
308 flush_tlb_all();
309
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700310 /* No more mappings: invalidate P2M and add to balloon. */
311 for (i = 0; i < nr_pages; i++) {
312 pfn = mfn_to_pfn(frame_list[i]);
Konrad Rzeszutek Wilk6eaa4122011-01-18 20:09:41 -0500313 __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700314 balloon_append(pfn_to_page(pfn));
315 }
316
Isaku Yamahataa90971e2008-05-26 23:31:14 +0100317 set_xen_guest_handle(reservation.extent_start, frame_list);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700318 reservation.nr_extents = nr_pages;
319 ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation, &reservation);
320 BUG_ON(ret != nr_pages);
321
322 balloon_stats.current_pages -= nr_pages;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700323
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100324 return state;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700325}
326
327/*
328 * We avoid multiple worker processes conflicting via the balloon mutex.
329 * We may of course race updates of the target counts (which are protected
330 * by the balloon lock), or with changes to the Xen hard limit, but we will
331 * recover from these in time.
332 */
333static void balloon_process(struct work_struct *work)
334{
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100335 enum bp_state state = BP_DONE;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700336 long credit;
337
338 mutex_lock(&balloon_mutex);
339
340 do {
Daniel Kiper83be7e52011-03-28 11:34:10 +0200341 credit = current_credit();
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100342
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700343 if (credit > 0)
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100344 state = increase_reservation(credit);
345
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700346 if (credit < 0)
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400347 state = decrease_reservation(-credit, GFP_BALLOON);
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100348
349 state = update_schedule(state);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700350
351#ifndef CONFIG_PREEMPT
352 if (need_resched())
353 schedule();
354#endif
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100355 } while (credit && state == BP_DONE);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700356
357 /* Schedule more work if there is some still to be done. */
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100358 if (state == BP_EAGAIN)
359 schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700360
361 mutex_unlock(&balloon_mutex);
362}
363
364/* Resets the Xen limit, sets new target, and kicks off processing. */
Daniel De Graaf803eb042011-03-14 11:29:37 -0400365void balloon_set_new_target(unsigned long target)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700366{
367 /* No need for lock. Not read-modify-write updates. */
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700368 balloon_stats.target_pages = target;
Daniel Kiper95170b22011-03-08 22:47:39 +0100369 schedule_delayed_work(&balloon_worker, 0);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700370}
Daniel De Graaf803eb042011-03-14 11:29:37 -0400371EXPORT_SYMBOL_GPL(balloon_set_new_target);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700372
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400373/**
374 * alloc_xenballooned_pages - get pages that have been ballooned out
375 * @nr_pages: Number of pages to get
376 * @pages: pages returned
377 * @return 0 on success, error otherwise
378 */
379int alloc_xenballooned_pages(int nr_pages, struct page** pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700380{
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400381 int pgno = 0;
382 struct page* page;
383 mutex_lock(&balloon_mutex);
384 while (pgno < nr_pages) {
385 page = balloon_retrieve(true);
386 if (page) {
387 pages[pgno++] = page;
388 } else {
389 enum bp_state st;
390 st = decrease_reservation(nr_pages - pgno, GFP_HIGHUSER);
391 if (st != BP_DONE)
392 goto out_undo;
393 }
394 }
395 mutex_unlock(&balloon_mutex);
396 return 0;
397 out_undo:
398 while (pgno)
399 balloon_append(pages[--pgno]);
400 /* Free the memory back to the kernel soon */
401 schedule_delayed_work(&balloon_worker, 0);
402 mutex_unlock(&balloon_mutex);
403 return -ENOMEM;
404}
405EXPORT_SYMBOL(alloc_xenballooned_pages);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700406
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400407/**
408 * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
409 * @nr_pages: Number of pages
410 * @pages: pages to return
411 */
412void free_xenballooned_pages(int nr_pages, struct page** pages)
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700413{
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400414 int i;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700415
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400416 mutex_lock(&balloon_mutex);
417
418 for (i = 0; i < nr_pages; i++) {
419 if (pages[i])
420 balloon_append(pages[i]);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700421 }
422
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400423 /* The balloon may be too large now. Shrink it if needed. */
Daniel Kiper83be7e52011-03-28 11:34:10 +0200424 if (current_credit())
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400425 schedule_delayed_work(&balloon_worker, 0);
426
427 mutex_unlock(&balloon_mutex);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700428}
Konrad Rzeszutek Wilkb6f30672011-03-15 10:23:57 -0400429EXPORT_SYMBOL(free_xenballooned_pages);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700430
431static int __init balloon_init(void)
432{
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200433 unsigned long pfn, extra_pfn_end;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700434 struct page *page;
435
Stefano Stabellini53d55222010-12-02 17:55:05 +0000436 if (!xen_domain())
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700437 return -ENODEV;
438
Daniel De Graaf803eb042011-03-14 11:29:37 -0400439 pr_info("xen/balloon: Initialising balloon driver.\n");
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700440
Daniel Kiper4dfe22f2011-03-28 11:33:18 +0200441 balloon_stats.current_pages = xen_pv_domain() ? min(xen_start_info->nr_pages, max_pfn) : max_pfn;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700442 balloon_stats.target_pages = balloon_stats.current_pages;
443 balloon_stats.balloon_low = 0;
444 balloon_stats.balloon_high = 0;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700445
Daniel Kiper95d2ac42011-03-08 22:48:24 +0100446 balloon_stats.schedule_delay = 1;
447 balloon_stats.max_schedule_delay = 32;
448 balloon_stats.retry_count = 1;
Konrad Rzeszutek Wilk40095de2011-03-14 11:42:40 -0400449 balloon_stats.max_retry_count = RETRY_UNLIMITED;
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700450
Jeremy Fitzhardinge2a4c92f2010-12-02 15:30:06 -0800451 /*
452 * Initialise the balloon with excess memory space. We need
453 * to make sure we don't add memory which doesn't exist or
454 * logically exist. The E820 map can be trimmed to be smaller
455 * than the amount of physical memory due to the mem= command
456 * line parameter. And if this is a 32-bit non-HIGHMEM kernel
457 * on a system with memory which requires highmem to access,
458 * don't try to use it.
459 */
460 extra_pfn_end = min(min(max_pfn, e820_end_of_ram_pfn()),
Jeremy Fitzhardinge66946f62010-09-14 10:32:32 -0700461 (unsigned long)PFN_DOWN(xen_extra_mem_start + xen_extra_mem_size));
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700462 for (pfn = PFN_UP(xen_extra_mem_start);
Jeremy Fitzhardinge66946f62010-09-14 10:32:32 -0700463 pfn < extra_pfn_end;
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700464 pfn++) {
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700465 page = pfn_to_page(pfn);
Daniel Kiper09ca1322011-03-28 11:35:59 +0200466 /* totalram_pages and totalhigh_pages do not include the boot-time
Jeremy Fitzhardinge9be4d452010-08-31 15:01:16 -0700467 balloon extension, so don't subtract from it. */
468 __balloon_append(page);
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700469 }
470
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700471 return 0;
472}
473
474subsys_initcall(balloon_init);
475
Jeremy Fitzhardinge17758262008-04-02 10:54:13 -0700476MODULE_LICENSE("GPL");