usermodehelper: kill the sub_info->path[0] check
[linux/fpc-iii.git] / drivers / xen / balloon.c
blobc8aab4e97833af69d91bb9a67b5d8ccc5f8ce6c4
1 /******************************************************************************
2 * Xen balloon driver - enables returning/claiming memory to/from Xen.
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 * Copyright (c) 2010 Daniel Kiper
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.
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:
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:
27 * The above copyright notice and this permission notice shall be included in
28 * all copies or substantial portions of the Software.
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.
39 #include <linux/kernel.h>
40 #include <linux/sched.h>
41 #include <linux/errno.h>
42 #include <linux/module.h>
43 #include <linux/mm.h>
44 #include <linux/bootmem.h>
45 #include <linux/pagemap.h>
46 #include <linux/highmem.h>
47 #include <linux/mutex.h>
48 #include <linux/list.h>
49 #include <linux/gfp.h>
50 #include <linux/notifier.h>
51 #include <linux/memory.h>
52 #include <linux/memory_hotplug.h>
54 #include <asm/page.h>
55 #include <asm/pgalloc.h>
56 #include <asm/pgtable.h>
57 #include <asm/tlb.h>
59 #include <asm/xen/hypervisor.h>
60 #include <asm/xen/hypercall.h>
62 #include <xen/xen.h>
63 #include <xen/interface/xen.h>
64 #include <xen/interface/memory.h>
65 #include <xen/balloon.h>
66 #include <xen/features.h>
67 #include <xen/page.h>
70 * balloon_process() state:
72 * BP_DONE: done or nothing to do,
73 * BP_EAGAIN: error, go to sleep,
74 * BP_ECANCELED: error, balloon operation canceled.
77 enum bp_state {
78 BP_DONE,
79 BP_EAGAIN,
80 BP_ECANCELED
84 static DEFINE_MUTEX(balloon_mutex);
86 struct balloon_stats balloon_stats;
87 EXPORT_SYMBOL_GPL(balloon_stats);
89 /* We increase/decrease in batches which fit in a page */
90 static xen_pfn_t frame_list[PAGE_SIZE / sizeof(unsigned long)];
92 /* List of ballooned pages, threaded through the mem_map array. */
93 static LIST_HEAD(ballooned_pages);
95 /* Main work function, always executed in process context. */
96 static void balloon_process(struct work_struct *work);
97 static DECLARE_DELAYED_WORK(balloon_worker, balloon_process);
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)
104 static void scrub_page(struct page *page)
106 #ifdef CONFIG_XEN_SCRUB_PAGES
107 clear_highpage(page);
108 #endif
111 /* balloon_append: add the given page to the balloon. */
112 static void __balloon_append(struct page *page)
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++;
118 } else {
119 list_add(&page->lru, &ballooned_pages);
120 balloon_stats.balloon_low++;
124 static void balloon_append(struct page *page)
126 __balloon_append(page);
127 adjust_managed_page_count(page, -1);
130 /* balloon_retrieve: rescue a page from the balloon, if it is not empty. */
131 static struct page *balloon_retrieve(bool prefer_highmem)
133 struct page *page;
135 if (list_empty(&ballooned_pages))
136 return NULL;
138 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);
142 list_del(&page->lru);
144 if (PageHighMem(page))
145 balloon_stats.balloon_high--;
146 else
147 balloon_stats.balloon_low--;
149 adjust_managed_page_count(page, 1);
151 return page;
154 static struct page *balloon_first_page(void)
156 if (list_empty(&ballooned_pages))
157 return NULL;
158 return list_entry(ballooned_pages.next, struct page, lru);
161 static struct page *balloon_next_page(struct page *page)
163 struct list_head *next = page->lru.next;
164 if (next == &ballooned_pages)
165 return NULL;
166 return list_entry(next, struct page, lru);
169 static enum bp_state update_schedule(enum bp_state state)
171 if (state == BP_DONE) {
172 balloon_stats.schedule_delay = 1;
173 balloon_stats.retry_count = 1;
174 return BP_DONE;
177 ++balloon_stats.retry_count;
179 if (balloon_stats.max_retry_count != RETRY_UNLIMITED &&
180 balloon_stats.retry_count > balloon_stats.max_retry_count) {
181 balloon_stats.schedule_delay = 1;
182 balloon_stats.retry_count = 1;
183 return BP_ECANCELED;
186 balloon_stats.schedule_delay <<= 1;
188 if (balloon_stats.schedule_delay > balloon_stats.max_schedule_delay)
189 balloon_stats.schedule_delay = balloon_stats.max_schedule_delay;
191 return BP_EAGAIN;
194 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
195 static long current_credit(void)
197 return balloon_stats.target_pages - balloon_stats.current_pages -
198 balloon_stats.hotplug_pages;
201 static bool balloon_is_inflated(void)
203 if (balloon_stats.balloon_low || balloon_stats.balloon_high ||
204 balloon_stats.balloon_hotplug)
205 return true;
206 else
207 return false;
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.
221 static enum bp_state reserve_additional_memory(long credit)
223 int nid, rc;
224 u64 hotplug_start_paddr;
225 unsigned long balloon_hotplug = credit;
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);
231 rc = add_memory(nid, hotplug_start_paddr, balloon_hotplug << PAGE_SHIFT);
233 if (rc) {
234 pr_info("xen_balloon: %s: add_memory() failed: %i\n", __func__, rc);
235 return BP_EAGAIN;
238 balloon_hotplug -= credit;
240 balloon_stats.hotplug_pages += credit;
241 balloon_stats.balloon_hotplug = balloon_hotplug;
243 return BP_DONE;
246 static void xen_online_page(struct page *page)
248 __online_page_set_limits(page);
250 mutex_lock(&balloon_mutex);
252 __balloon_append(page);
254 if (balloon_stats.hotplug_pages)
255 --balloon_stats.hotplug_pages;
256 else
257 --balloon_stats.balloon_hotplug;
259 mutex_unlock(&balloon_mutex);
262 static int xen_memory_notifier(struct notifier_block *nb, unsigned long val, void *v)
264 if (val == MEM_ONLINE)
265 schedule_delayed_work(&balloon_worker, 0);
267 return NOTIFY_OK;
270 static struct notifier_block xen_memory_nb = {
271 .notifier_call = xen_memory_notifier,
272 .priority = 0
274 #else
275 static long current_credit(void)
277 unsigned long target = balloon_stats.target_pages;
279 target = min(target,
280 balloon_stats.current_pages +
281 balloon_stats.balloon_low +
282 balloon_stats.balloon_high);
284 return target - balloon_stats.current_pages;
287 static bool balloon_is_inflated(void)
289 if (balloon_stats.balloon_low || balloon_stats.balloon_high)
290 return true;
291 else
292 return false;
295 static enum bp_state reserve_additional_memory(long credit)
297 balloon_stats.target_pages = balloon_stats.current_pages;
298 return BP_DONE;
300 #endif /* CONFIG_XEN_BALLOON_MEMORY_HOTPLUG */
302 static enum bp_state increase_reservation(unsigned long nr_pages)
304 int rc;
305 unsigned long pfn, i;
306 struct page *page;
307 struct xen_memory_reservation reservation = {
308 .address_bits = 0,
309 .extent_order = 0,
310 .domid = DOMID_SELF
313 #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;
320 #endif
322 if (nr_pages > ARRAY_SIZE(frame_list))
323 nr_pages = ARRAY_SIZE(frame_list);
325 page = balloon_first_page();
326 for (i = 0; i < nr_pages; i++) {
327 if (!page) {
328 nr_pages = i;
329 break;
331 frame_list[i] = page_to_pfn(page);
332 page = balloon_next_page(page);
335 set_xen_guest_handle(reservation.extent_start, frame_list);
336 reservation.nr_extents = nr_pages;
337 rc = HYPERVISOR_memory_op(XENMEM_populate_physmap, &reservation);
338 if (rc <= 0)
339 return BP_EAGAIN;
341 for (i = 0; i < rc; i++) {
342 page = balloon_retrieve(false);
343 BUG_ON(page == NULL);
345 pfn = page_to_pfn(page);
346 BUG_ON(!xen_feature(XENFEAT_auto_translated_physmap) &&
347 phys_to_machine_mapping_valid(pfn));
349 set_phys_to_machine(pfn, frame_list[i]);
351 #ifdef CONFIG_XEN_HAVE_PVMMU
352 /* Link back into the page tables if not highmem. */
353 if (xen_pv_domain() && !PageHighMem(page)) {
354 int ret;
355 ret = HYPERVISOR_update_va_mapping(
356 (unsigned long)__va(pfn << PAGE_SHIFT),
357 mfn_pte(frame_list[i], PAGE_KERNEL),
359 BUG_ON(ret);
361 #endif
363 /* Relinquish the page back to the allocator. */
364 __free_reserved_page(page);
367 balloon_stats.current_pages += rc;
369 return BP_DONE;
372 static enum bp_state decrease_reservation(unsigned long nr_pages, gfp_t gfp)
374 enum bp_state state = BP_DONE;
375 unsigned long pfn, i;
376 struct page *page;
377 int ret;
378 struct xen_memory_reservation reservation = {
379 .address_bits = 0,
380 .extent_order = 0,
381 .domid = DOMID_SELF
384 #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;
391 #endif
393 if (nr_pages > ARRAY_SIZE(frame_list))
394 nr_pages = ARRAY_SIZE(frame_list);
396 for (i = 0; i < nr_pages; i++) {
397 page = alloc_page(gfp);
398 if (page == NULL) {
399 nr_pages = i;
400 state = BP_EAGAIN;
401 break;
404 pfn = page_to_pfn(page);
405 frame_list[i] = pfn_to_mfn(pfn);
407 scrub_page(page);
409 #ifdef CONFIG_XEN_HAVE_PVMMU
410 if (xen_pv_domain() && !PageHighMem(page)) {
411 ret = HYPERVISOR_update_va_mapping(
412 (unsigned long)__va(pfn << PAGE_SHIFT),
413 __pte_ma(0), 0);
414 BUG_ON(ret);
416 #endif
419 /* Ensure that ballooned highmem pages don't have kmaps. */
420 kmap_flush_unused();
421 flush_tlb_all();
423 /* 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]);
426 __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
427 balloon_append(pfn_to_page(pfn));
430 set_xen_guest_handle(reservation.extent_start, frame_list);
431 reservation.nr_extents = nr_pages;
432 ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation, &reservation);
433 BUG_ON(ret != nr_pages);
435 balloon_stats.current_pages -= nr_pages;
437 return state;
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.
446 static void balloon_process(struct work_struct *work)
448 enum bp_state state = BP_DONE;
449 long credit;
451 mutex_lock(&balloon_mutex);
453 do {
454 credit = current_credit();
456 if (credit > 0) {
457 if (balloon_is_inflated())
458 state = increase_reservation(credit);
459 else
460 state = reserve_additional_memory(credit);
463 if (credit < 0)
464 state = decrease_reservation(-credit, GFP_BALLOON);
466 state = update_schedule(state);
468 #ifndef CONFIG_PREEMPT
469 if (need_resched())
470 schedule();
471 #endif
472 } while (credit && state == BP_DONE);
474 /* Schedule more work if there is some still to be done. */
475 if (state == BP_EAGAIN)
476 schedule_delayed_work(&balloon_worker, balloon_stats.schedule_delay * HZ);
478 mutex_unlock(&balloon_mutex);
481 /* Resets the Xen limit, sets new target, and kicks off processing. */
482 void balloon_set_new_target(unsigned long target)
484 /* No need for lock. Not read-modify-write updates. */
485 balloon_stats.target_pages = target;
486 schedule_delayed_work(&balloon_worker, 0);
488 EXPORT_SYMBOL_GPL(balloon_set_new_target);
491 * alloc_xenballooned_pages - get pages that have been ballooned out
492 * @nr_pages: Number of pages to get
493 * @pages: pages returned
494 * @highmem: allow highmem pages
495 * @return 0 on success, error otherwise
497 int alloc_xenballooned_pages(int nr_pages, struct page **pages, bool highmem)
499 int pgno = 0;
500 struct page *page;
501 mutex_lock(&balloon_mutex);
502 while (pgno < nr_pages) {
503 page = balloon_retrieve(highmem);
504 if (page && (highmem || !PageHighMem(page))) {
505 pages[pgno++] = page;
506 } else {
507 enum bp_state st;
508 if (page)
509 balloon_append(page);
510 st = decrease_reservation(nr_pages - pgno,
511 highmem ? GFP_HIGHUSER : GFP_USER);
512 if (st != BP_DONE)
513 goto out_undo;
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;
526 EXPORT_SYMBOL(alloc_xenballooned_pages);
529 * free_xenballooned_pages - return pages retrieved with get_ballooned_pages
530 * @nr_pages: Number of pages
531 * @pages: pages to return
533 void free_xenballooned_pages(int nr_pages, struct page **pages)
535 int i;
537 mutex_lock(&balloon_mutex);
539 for (i = 0; i < nr_pages; i++) {
540 if (pages[i])
541 balloon_append(pages[i]);
544 /* The balloon may be too large now. Shrink it if needed. */
545 if (current_credit())
546 schedule_delayed_work(&balloon_worker, 0);
548 mutex_unlock(&balloon_mutex);
550 EXPORT_SYMBOL(free_xenballooned_pages);
552 static void __init balloon_add_region(unsigned long start_pfn,
553 unsigned long pages)
555 unsigned long pfn, extra_pfn_end;
556 struct page *page;
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.
563 extra_pfn_end = min(max_pfn, start_pfn + pages);
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);
574 static int __init balloon_init(void)
576 int i;
578 if (!xen_domain())
579 return -ENODEV;
581 pr_info("xen/balloon: Initialising balloon driver.\n");
583 balloon_stats.current_pages = xen_pv_domain()
584 ? min(xen_start_info->nr_pages - xen_released_pages, max_pfn)
585 : max_pfn;
586 balloon_stats.target_pages = balloon_stats.current_pages;
587 balloon_stats.balloon_low = 0;
588 balloon_stats.balloon_high = 0;
590 balloon_stats.schedule_delay = 1;
591 balloon_stats.max_schedule_delay = 32;
592 balloon_stats.retry_count = 1;
593 balloon_stats.max_retry_count = RETRY_UNLIMITED;
595 #ifdef CONFIG_XEN_BALLOON_MEMORY_HOTPLUG
596 balloon_stats.hotplug_pages = 0;
597 balloon_stats.balloon_hotplug = 0;
599 set_online_page_callback(&xen_online_page);
600 register_memory_notifier(&xen_memory_nb);
601 #endif
604 * Initialize the balloon with pages from the extra memory
605 * regions (see arch/x86/xen/setup.c).
607 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));
612 return 0;
615 subsys_initcall(balloon_init);
617 MODULE_LICENSE("GPL");