x86/xen: during early setup, only 1:1 map the ISA region
[deliverable/linux.git] / arch / x86 / xen / setup.c
CommitLineData
5ead97c8
JF
1/*
2 * Machine specific setup for xen
3 *
4 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
5 */
6
7#include <linux/module.h>
8#include <linux/sched.h>
9#include <linux/mm.h>
10#include <linux/pm.h>
a9ce6bc1 11#include <linux/memblock.h>
d91ee586 12#include <linux/cpuidle.h>
48cdd828 13#include <linux/cpufreq.h>
5ead97c8
JF
14
15#include <asm/elf.h>
6c3652ef 16#include <asm/vdso.h>
5ead97c8
JF
17#include <asm/e820.h>
18#include <asm/setup.h>
b792c755 19#include <asm/acpi.h>
8d54db79 20#include <asm/numa.h>
5ead97c8
JF
21#include <asm/xen/hypervisor.h>
22#include <asm/xen/hypercall.h>
23
45263cb0 24#include <xen/xen.h>
8006ec3e 25#include <xen/page.h>
e2a81baf 26#include <xen/interface/callback.h>
35ae11fd 27#include <xen/interface/memory.h>
5ead97c8
JF
28#include <xen/interface/physdev.h>
29#include <xen/features.h>
5ead97c8 30#include "xen-ops.h"
d2eea68e 31#include "vdso.h"
5ead97c8
JF
32
33/* These are code, but not functions. Defined in entry.S */
34extern const char xen_hypervisor_callback[];
35extern const char xen_failsafe_callback[];
6efa20e4
KRW
36#ifdef CONFIG_X86_64
37extern const char nmi[];
38#endif
f63c2f24
T
39extern void xen_sysenter_target(void);
40extern void xen_syscall_target(void);
41extern void xen_syscall32_target(void);
5ead97c8 42
42ee1471 43/* Amount of extra memory space we add to the e820 ranges */
8b5d44a5 44struct xen_memory_region xen_extra_mem[XEN_EXTRA_MEM_MAX_REGIONS] __initdata;
42ee1471 45
aa24411b
DV
46/* Number of pages released from the initial allocation. */
47unsigned long xen_released_pages;
48
698bb8d1
JF
49/*
50 * The maximum amount of extra memory compared to the base size. The
51 * main scaling factor is the size of struct page. At extreme ratios
52 * of base:extra, all the base memory can be filled with page
53 * structures for the extra memory, leaving no space for anything
54 * else.
55 *
56 * 10x seems like a reasonable balance between scaling flexibility and
57 * leaving a practically usable system.
58 */
59#define EXTRA_MEM_RATIO (10)
60
dc91c728 61static void __init xen_add_extra_mem(u64 start, u64 size)
42ee1471 62{
6eaa412f 63 unsigned long pfn;
dc91c728 64 int i;
6eaa412f 65
dc91c728
DV
66 for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
67 /* Add new region. */
68 if (xen_extra_mem[i].size == 0) {
69 xen_extra_mem[i].start = start;
70 xen_extra_mem[i].size = size;
71 break;
72 }
73 /* Append to existing region. */
74 if (xen_extra_mem[i].start + xen_extra_mem[i].size == start) {
75 xen_extra_mem[i].size += size;
76 break;
77 }
78 }
79 if (i == XEN_EXTRA_MEM_MAX_REGIONS)
80 printk(KERN_WARNING "Warning: not enough extra memory regions\n");
42ee1471 81
d4bbf7e7 82 memblock_reserve(start, size);
2f7acb20 83
dc91c728 84 xen_max_p2m_pfn = PFN_DOWN(start + size);
c96aae1f
KRW
85 for (pfn = PFN_DOWN(start); pfn < xen_max_p2m_pfn; pfn++) {
86 unsigned long mfn = pfn_to_mfn(pfn);
87
88 if (WARN(mfn == pfn, "Trying to over-write 1-1 mapping (pfn: %lx)\n", pfn))
89 continue;
90 WARN(mfn != INVALID_P2M_ENTRY, "Trying to remove %lx which has %lx mfn!\n",
91 pfn, mfn);
6eaa412f 92
6eaa412f 93 __set_phys_to_machine(pfn, INVALID_P2M_ENTRY);
c96aae1f 94 }
42ee1471
JF
95}
96
96dc08b3
KRW
97static unsigned long __init xen_do_chunk(unsigned long start,
98 unsigned long end, bool release)
093d7b46
MR
99{
100 struct xen_memory_reservation reservation = {
101 .address_bits = 0,
102 .extent_order = 0,
103 .domid = DOMID_SELF
104 };
f89e048e 105 unsigned long len = 0;
093d7b46
MR
106 unsigned long pfn;
107 int ret;
108
2e2fb754
KRW
109 for (pfn = start; pfn < end; pfn++) {
110 unsigned long frame;
96dc08b3 111 unsigned long mfn = pfn_to_mfn(pfn);
2e2fb754 112
96dc08b3
KRW
113 if (release) {
114 /* Make sure pfn exists to start with */
115 if (mfn == INVALID_P2M_ENTRY || mfn_to_pfn(mfn) != pfn)
116 continue;
117 frame = mfn;
118 } else {
119 if (mfn != INVALID_P2M_ENTRY)
120 continue;
121 frame = pfn;
122 }
2e2fb754
KRW
123 set_xen_guest_handle(reservation.extent_start, &frame);
124 reservation.nr_extents = 1;
125
96dc08b3
KRW
126 ret = HYPERVISOR_memory_op(release ? XENMEM_decrease_reservation : XENMEM_populate_physmap,
127 &reservation);
128 WARN(ret != 1, "Failed to %s pfn %lx err=%d\n",
129 release ? "release" : "populate", pfn, ret);
130
2e2fb754 131 if (ret == 1) {
96dc08b3
KRW
132 if (!early_set_phys_to_machine(pfn, release ? INVALID_P2M_ENTRY : frame)) {
133 if (release)
134 break;
2e2fb754
KRW
135 set_xen_guest_handle(reservation.extent_start, &frame);
136 reservation.nr_extents = 1;
137 ret = HYPERVISOR_memory_op(XENMEM_decrease_reservation,
96dc08b3 138 &reservation);
2e2fb754
KRW
139 break;
140 }
141 len++;
142 } else
143 break;
144 }
145 if (len)
96dc08b3
KRW
146 printk(KERN_INFO "%s %lx-%lx pfn range: %lu pages %s\n",
147 release ? "Freeing" : "Populating",
148 start, end, len,
149 release ? "freed" : "added");
150
2e2fb754
KRW
151 return len;
152}
83d51ab4
DV
153
154static unsigned long __init xen_release_chunk(unsigned long start,
155 unsigned long end)
156{
157 return xen_do_chunk(start, end, true);
158}
159
2e2fb754
KRW
160static unsigned long __init xen_populate_chunk(
161 const struct e820entry *list, size_t map_size,
162 unsigned long max_pfn, unsigned long *last_pfn,
163 unsigned long credits_left)
164{
165 const struct e820entry *entry;
166 unsigned int i;
167 unsigned long done = 0;
168 unsigned long dest_pfn;
169
170 for (i = 0, entry = list; i < map_size; i++, entry++) {
2e2fb754
KRW
171 unsigned long s_pfn;
172 unsigned long e_pfn;
173 unsigned long pfns;
174 long capacity;
175
c3d93f88 176 if (credits_left <= 0)
2e2fb754
KRW
177 break;
178
179 if (entry->type != E820_RAM)
180 continue;
181
c3d93f88 182 e_pfn = PFN_DOWN(entry->addr + entry->size);
2e2fb754
KRW
183
184 /* We only care about E820 after the xen_start_info->nr_pages */
185 if (e_pfn <= max_pfn)
186 continue;
187
c3d93f88 188 s_pfn = PFN_UP(entry->addr);
2e2fb754
KRW
189 /* If the E820 falls within the nr_pages, we want to start
190 * at the nr_pages PFN.
191 * If that would mean going past the E820 entry, skip it
192 */
193 if (s_pfn <= max_pfn) {
194 capacity = e_pfn - max_pfn;
195 dest_pfn = max_pfn;
196 } else {
2e2fb754
KRW
197 capacity = e_pfn - s_pfn;
198 dest_pfn = s_pfn;
199 }
2e2fb754 200
c3d93f88 201 if (credits_left < capacity)
202 capacity = credits_left;
2e2fb754 203
c3d93f88 204 pfns = xen_do_chunk(dest_pfn, dest_pfn + capacity, false);
2e2fb754 205 done += pfns;
2e2fb754 206 *last_pfn = (dest_pfn + pfns);
c3d93f88 207 if (pfns < capacity)
208 break;
209 credits_left -= pfns;
2e2fb754
KRW
210 }
211 return done;
212}
83d51ab4
DV
213
214static void __init xen_set_identity_and_release_chunk(
215 unsigned long start_pfn, unsigned long end_pfn, unsigned long nr_pages,
216 unsigned long *released, unsigned long *identity)
217{
218 unsigned long pfn;
219
220 /*
e201bfcc
DV
221 * If the PFNs are currently mapped, clear the mappings
222 * (except for the ISA region which must be 1:1 mapped) to
223 * release the refcounts (in Xen) on the original frames.
83d51ab4 224 */
e201bfcc
DV
225 for (pfn = start_pfn; pfn <= max_pfn_mapped && pfn < end_pfn; pfn++) {
226 pte_t pte = __pte_ma(0);
227
228 if (pfn < PFN_UP(ISA_END_ADDRESS))
229 pte = mfn_pte(pfn, PAGE_KERNEL_IO);
230
83d51ab4 231 (void)HYPERVISOR_update_va_mapping(
e201bfcc
DV
232 (unsigned long)__va(pfn << PAGE_SHIFT), pte, 0);
233 }
83d51ab4
DV
234
235 if (start_pfn < nr_pages)
236 *released += xen_release_chunk(
237 start_pfn, min(end_pfn, nr_pages));
238
239 *identity += set_phys_range_identity(start_pfn, end_pfn);
240}
241
f3f436e3
DV
242static unsigned long __init xen_set_identity_and_release(
243 const struct e820entry *list, size_t map_size, unsigned long nr_pages)
093d7b46 244{
f3f436e3 245 phys_addr_t start = 0;
093d7b46 246 unsigned long released = 0;
68df0da7 247 unsigned long identity = 0;
f3f436e3 248 const struct e820entry *entry;
68df0da7
KRW
249 int i;
250
f3f436e3
DV
251 /*
252 * Combine non-RAM regions and gaps until a RAM region (or the
253 * end of the map) is reached, then set the 1:1 map and
254 * release the pages (if available) in those non-RAM regions.
255 *
256 * The combined non-RAM regions are rounded to a whole number
257 * of pages so any partial pages are accessible via the 1:1
258 * mapping. This is needed for some BIOSes that put (for
259 * example) the DMI tables in a reserved region that begins on
260 * a non-page boundary.
261 */
68df0da7 262 for (i = 0, entry = list; i < map_size; i++, entry++) {
f3f436e3 263 phys_addr_t end = entry->addr + entry->size;
f3f436e3
DV
264 if (entry->type == E820_RAM || i == map_size - 1) {
265 unsigned long start_pfn = PFN_DOWN(start);
266 unsigned long end_pfn = PFN_UP(end);
68df0da7 267
f3f436e3
DV
268 if (entry->type == E820_RAM)
269 end_pfn = PFN_UP(entry->addr);
68df0da7 270
83d51ab4
DV
271 if (start_pfn < end_pfn)
272 xen_set_identity_and_release_chunk(
273 start_pfn, end_pfn, nr_pages,
274 &released, &identity);
68df0da7 275
f3f436e3 276 start = end;
68df0da7 277 }
68df0da7 278 }
f3f436e3 279
ca118238
KRW
280 if (released)
281 printk(KERN_INFO "Released %lu pages of unused memory\n", released);
282 if (identity)
283 printk(KERN_INFO "Set %ld page(s) to 1-1 mapping\n", identity);
f3f436e3
DV
284
285 return released;
68df0da7 286}
d312ae87
DV
287
288static unsigned long __init xen_get_max_pages(void)
289{
290 unsigned long max_pages = MAX_DOMAIN_PAGES;
291 domid_t domid = DOMID_SELF;
292 int ret;
293
d3db7281
IC
294 /*
295 * For the initial domain we use the maximum reservation as
296 * the maximum page.
297 *
298 * For guest domains the current maximum reservation reflects
299 * the current maximum rather than the static maximum. In this
300 * case the e820 map provided to us will cover the static
301 * maximum region.
302 */
303 if (xen_initial_domain()) {
304 ret = HYPERVISOR_memory_op(XENMEM_maximum_reservation, &domid);
305 if (ret > 0)
306 max_pages = ret;
307 }
308
d312ae87
DV
309 return min(max_pages, MAX_DOMAIN_PAGES);
310}
311
dc91c728
DV
312static void xen_align_and_add_e820_region(u64 start, u64 size, int type)
313{
314 u64 end = start + size;
315
316 /* Align RAM regions to page boundaries. */
317 if (type == E820_RAM) {
318 start = PAGE_ALIGN(start);
319 end &= ~((u64)PAGE_SIZE - 1);
320 }
321
322 e820_add_region(start, end - start, type);
323}
324
5ead97c8
JF
325/**
326 * machine_specific_memory_setup - Hook for machine specific memory setup.
327 **/
5ead97c8
JF
328char * __init xen_memory_setup(void)
329{
35ae11fd
IC
330 static struct e820entry map[E820MAX] __initdata;
331
5ead97c8 332 unsigned long max_pfn = xen_start_info->nr_pages;
35ae11fd
IC
333 unsigned long long mem_end;
334 int rc;
335 struct xen_memory_map memmap;
dc91c728 336 unsigned long max_pages;
2e2fb754 337 unsigned long last_pfn = 0;
42ee1471 338 unsigned long extra_pages = 0;
2e2fb754 339 unsigned long populated;
35ae11fd 340 int i;
9e9a5fcb 341 int op;
5ead97c8 342
8006ec3e 343 max_pfn = min(MAX_DOMAIN_PAGES, max_pfn);
35ae11fd
IC
344 mem_end = PFN_PHYS(max_pfn);
345
346 memmap.nr_entries = E820MAX;
347 set_xen_guest_handle(memmap.buffer, map);
348
9e9a5fcb
IC
349 op = xen_initial_domain() ?
350 XENMEM_machine_memory_map :
351 XENMEM_memory_map;
352 rc = HYPERVISOR_memory_op(op, &memmap);
35ae11fd 353 if (rc == -ENOSYS) {
9ec23a7f 354 BUG_ON(xen_initial_domain());
35ae11fd
IC
355 memmap.nr_entries = 1;
356 map[0].addr = 0ULL;
357 map[0].size = mem_end;
358 /* 8MB slack (to balance backend allocations). */
359 map[0].size += 8ULL << 20;
360 map[0].type = E820_RAM;
361 rc = 0;
362 }
363 BUG_ON(rc);
8006ec3e 364
dc91c728
DV
365 /* Make sure the Xen-supplied memory map is well-ordered. */
366 sanitize_e820_map(map, memmap.nr_entries, &memmap.nr_entries);
367
368 max_pages = xen_get_max_pages();
369 if (max_pages > max_pfn)
370 extra_pages += max_pages - max_pfn;
371
f3f436e3
DV
372 /*
373 * Set P2M for all non-RAM pages and E820 gaps to be identity
374 * type PFNs. Any RAM pages that would be made inaccesible by
375 * this are first released.
376 */
377 xen_released_pages = xen_set_identity_and_release(
378 map, memmap.nr_entries, max_pfn);
dc91c728 379
2e2fb754
KRW
380 /*
381 * Populate back the non-RAM pages and E820 gaps that had been
382 * released. */
383 populated = xen_populate_chunk(map, memmap.nr_entries,
384 max_pfn, &last_pfn, xen_released_pages);
385
58b7b53a
KRW
386 xen_released_pages -= populated;
387 extra_pages += xen_released_pages;
2e2fb754
KRW
388
389 if (last_pfn > max_pfn) {
390 max_pfn = min(MAX_DOMAIN_PAGES, last_pfn);
391 mem_end = PFN_PHYS(max_pfn);
392 }
dc91c728
DV
393 /*
394 * Clamp the amount of extra memory to a EXTRA_MEM_RATIO
395 * factor the base size. On non-highmem systems, the base
396 * size is the full initial memory allocation; on highmem it
397 * is limited to the max size of lowmem, so that it doesn't
398 * get completely filled.
399 *
400 * In principle there could be a problem in lowmem systems if
401 * the initial memory is also very large with respect to
402 * lowmem, but we won't try to deal with that here.
403 */
404 extra_pages = min(EXTRA_MEM_RATIO * min(max_pfn, PFN_DOWN(MAXMEM)),
405 extra_pages);
dc91c728
DV
406 i = 0;
407 while (i < memmap.nr_entries) {
408 u64 addr = map[i].addr;
409 u64 size = map[i].size;
410 u32 type = map[i].type;
411
412 if (type == E820_RAM) {
413 if (addr < mem_end) {
414 size = min(size, mem_end - addr);
415 } else if (extra_pages) {
416 size = min(size, (u64)extra_pages * PAGE_SIZE);
417 extra_pages -= size / PAGE_SIZE;
418 xen_add_extra_mem(addr, size);
419 } else
420 type = E820_UNUSABLE;
3654581e
JF
421 }
422
dc91c728 423 xen_align_and_add_e820_region(addr, size, type);
b5b43ced 424
dc91c728
DV
425 map[i].addr += size;
426 map[i].size -= size;
427 if (map[i].size == 0)
428 i++;
35ae11fd 429 }
b792c755
JF
430
431 /*
9ec23a7f
IC
432 * In domU, the ISA region is normal, usable memory, but we
433 * reserve ISA memory anyway because too many things poke
b792c755
JF
434 * about in there.
435 */
436 e820_add_region(ISA_START_ADDRESS, ISA_END_ADDRESS - ISA_START_ADDRESS,
437 E820_RESERVED);
5ead97c8 438
be5bf9fa
JF
439 /*
440 * Reserve Xen bits:
441 * - mfn_list
442 * - xen_start_info
443 * See comment above "struct start_info" in <xen/interface/xen.h>
51faaf2b
KRW
444 * We tried to make the the memblock_reserve more selective so
445 * that it would be clear what region is reserved. Sadly we ran
446 * in the problem wherein on a 64-bit hypervisor with a 32-bit
447 * initial domain, the pt_base has the cr3 value which is not
448 * neccessarily where the pagetable starts! As Jan put it: "
449 * Actually, the adjustment turns out to be correct: The page
450 * tables for a 32-on-64 dom0 get allocated in the order "first L1",
451 * "first L2", "first L3", so the offset to the page table base is
452 * indeed 2. When reading xen/include/public/xen.h's comment
453 * very strictly, this is not a violation (since there nothing is said
454 * that the first thing in the page table space is pointed to by
455 * pt_base; I admit that this seems to be implied though, namely
456 * do I think that it is implied that the page table space is the
457 * range [pt_base, pt_base + nt_pt_frames), whereas that
458 * range here indeed is [pt_base - 2, pt_base - 2 + nt_pt_frames),
459 * which - without a priori knowledge - the kernel would have
460 * difficulty to figure out)." - so lets just fall back to the
461 * easy way and reserve the whole region.
be5bf9fa 462 */
24aa0788
TH
463 memblock_reserve(__pa(xen_start_info->mfn_list),
464 xen_start_info->pt_base - xen_start_info->mfn_list);
be5bf9fa
JF
465
466 sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
467
5ead97c8
JF
468 return "Xen";
469}
470
d2eea68e
RM
471/*
472 * Set the bit indicating "nosegneg" library variants should be used.
6a52e4b1
JF
473 * We only need to bother in pure 32-bit mode; compat 32-bit processes
474 * can have un-truncated segments, so wrapping around is allowed.
d2eea68e 475 */
08b6d290 476static void __init fiddle_vdso(void)
d2eea68e 477{
6a52e4b1
JF
478#ifdef CONFIG_X86_32
479 u32 *mask;
480 mask = VDSO32_SYMBOL(&vdso32_int80_start, NOTE_MASK);
481 *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
482 mask = VDSO32_SYMBOL(&vdso32_sysenter_start, NOTE_MASK);
d2eea68e 483 *mask |= 1 << VDSO_NOTE_NONEGSEG_BIT;
6fcac6d3 484#endif
d2eea68e
RM
485}
486
148f9bb8 487static int register_callback(unsigned type, const void *func)
e2a81baf 488{
88459d4c
JF
489 struct callback_register callback = {
490 .type = type,
491 .address = XEN_CALLBACK(__KERNEL_CS, func),
e2a81baf
JF
492 .flags = CALLBACKF_mask_events,
493 };
494
88459d4c
JF
495 return HYPERVISOR_callback_op(CALLBACKOP_register, &callback);
496}
497
148f9bb8 498void xen_enable_sysenter(void)
88459d4c 499{
6fcac6d3 500 int ret;
62541c37 501 unsigned sysenter_feature;
6fcac6d3
JF
502
503#ifdef CONFIG_X86_32
62541c37 504 sysenter_feature = X86_FEATURE_SEP;
6fcac6d3 505#else
62541c37 506 sysenter_feature = X86_FEATURE_SYSENTER32;
6fcac6d3 507#endif
88459d4c 508
62541c37
JF
509 if (!boot_cpu_has(sysenter_feature))
510 return;
511
6fcac6d3 512 ret = register_callback(CALLBACKTYPE_sysenter, xen_sysenter_target);
62541c37
JF
513 if(ret != 0)
514 setup_clear_cpu_cap(sysenter_feature);
e2a81baf
JF
515}
516
148f9bb8 517void xen_enable_syscall(void)
6fcac6d3
JF
518{
519#ifdef CONFIG_X86_64
6fcac6d3 520 int ret;
6fcac6d3
JF
521
522 ret = register_callback(CALLBACKTYPE_syscall, xen_syscall_target);
523 if (ret != 0) {
d5303b81 524 printk(KERN_ERR "Failed to set syscall callback: %d\n", ret);
62541c37
JF
525 /* Pretty fatal; 64-bit userspace has no other
526 mechanism for syscalls. */
527 }
528
529 if (boot_cpu_has(X86_FEATURE_SYSCALL32)) {
6fcac6d3
JF
530 ret = register_callback(CALLBACKTYPE_syscall32,
531 xen_syscall32_target);
d5303b81 532 if (ret != 0)
62541c37 533 setup_clear_cpu_cap(X86_FEATURE_SYSCALL32);
6fcac6d3
JF
534 }
535#endif /* CONFIG_X86_64 */
536}
6efa20e4
KRW
537void __cpuinit xen_enable_nmi(void)
538{
539#ifdef CONFIG_X86_64
540 if (register_callback(CALLBACKTYPE_nmi, nmi))
541 BUG();
542#endif
543}
5ead97c8
JF
544void __init xen_arch_setup(void)
545{
f09f6d19
DD
546 xen_panic_handler_init();
547
5ead97c8
JF
548 HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_4gb_segments);
549 HYPERVISOR_vm_assist(VMASST_CMD_enable, VMASST_TYPE_writable_pagetables);
550
551 if (!xen_feature(XENFEAT_auto_translated_physmap))
f63c2f24
T
552 HYPERVISOR_vm_assist(VMASST_CMD_enable,
553 VMASST_TYPE_pae_extended_cr3);
5ead97c8 554
88459d4c
JF
555 if (register_callback(CALLBACKTYPE_event, xen_hypervisor_callback) ||
556 register_callback(CALLBACKTYPE_failsafe, xen_failsafe_callback))
557 BUG();
5ead97c8 558
e2a81baf 559 xen_enable_sysenter();
6fcac6d3 560 xen_enable_syscall();
6efa20e4 561 xen_enable_nmi();
5ead97c8
JF
562#ifdef CONFIG_ACPI
563 if (!(xen_start_info->flags & SIF_INITDOMAIN)) {
564 printk(KERN_INFO "ACPI in unprivileged domain disabled\n");
565 disable_acpi();
566 }
567#endif
568
569 memcpy(boot_command_line, xen_start_info->cmd_line,
570 MAX_GUEST_CMDLINE > COMMAND_LINE_SIZE ?
571 COMMAND_LINE_SIZE : MAX_GUEST_CMDLINE);
572
bc15fde7 573 /* Set up idle, making sure it calls safe_halt() pvop */
d91ee586 574 disable_cpuidle();
48cdd828 575 disable_cpufreq();
6a377ddc 576 WARN_ON(xen_set_default_idle());
d2eea68e 577 fiddle_vdso();
8d54db79
KRW
578#ifdef CONFIG_NUMA
579 numa_off = 1;
580#endif
5ead97c8 581}
This page took 0.402213 seconds and 5 git commands to generate.