search for: setup_memory

Displaying 10 results from an estimated 10 matches for "setup_memory".

2008 Apr 16
1
[PATCH] kvm: move kvmclock initialization inside kvm_guest_init
...OP_IO_DELAY)) pv_cpu_ops.io_delay = kvm_io_delay; diff --git a/arch/x86/kernel/setup_32.c b/arch/x86/kernel/setup_32.c index 65f3a23..029350c 100644 --- a/arch/x86/kernel/setup_32.c +++ b/arch/x86/kernel/setup_32.c @@ -771,10 +771,6 @@ void __init setup_arch(char **cmdline_p) max_low_pfn = setup_memory(); -#ifdef CONFIG_KVM_CLOCK - kvmclock_init(); -#endif - #ifdef CONFIG_VMI /* * Must be after max_low_pfn is determined, and before kernel diff --git a/include/linux/kvm_para.h b/include/linux/kvm_para.h index 3ddce03..c5e662c 100644 --- a/include/linux/kvm_para.h +++ b/include/linux/kvm_pa...
2008 Apr 16
1
[PATCH] kvm: move kvmclock initialization inside kvm_guest_init
...OP_IO_DELAY)) pv_cpu_ops.io_delay = kvm_io_delay; diff --git a/arch/x86/kernel/setup_32.c b/arch/x86/kernel/setup_32.c index 65f3a23..029350c 100644 --- a/arch/x86/kernel/setup_32.c +++ b/arch/x86/kernel/setup_32.c @@ -771,10 +771,6 @@ void __init setup_arch(char **cmdline_p) max_low_pfn = setup_memory(); -#ifdef CONFIG_KVM_CLOCK - kvmclock_init(); -#endif - #ifdef CONFIG_VMI /* * Must be after max_low_pfn is determined, and before kernel diff --git a/include/linux/kvm_para.h b/include/linux/kvm_para.h index 3ddce03..c5e662c 100644 --- a/include/linux/kvm_para.h +++ b/include/linux/kvm_pa...
2007 Apr 18
1
[RFC, PATCH 19/24] i386 Vmi mmu changes
...=============== --- linux-2.6.16-rc5.orig/arch/i386/kernel/setup.c 2006-03-10 12:55:05.000000000 -0800 +++ linux-2.6.16-rc5/arch/i386/kernel/setup.c 2006-03-10 13:03:39.000000000 -0800 @@ -1555,6 +1555,7 @@ void __init setup_arch(char **cmdline_p) parse_cmdline_early(cmdline_p); max_low_pfn = setup_memory(); + mach_map_linear_range(__PAGE_OFFSET, max_low_pfn, 0); /* * NOTE: before this point _nobody_ is allowed to allocate Index: linux-2.6.16-rc5/arch/i386/mm/fault.c =================================================================== --- linux-2.6.16-rc5.orig/arch/i386/mm/fault.c 2006-03-10 1...
2007 Apr 18
1
[RFC, PATCH 19/24] i386 Vmi mmu changes
...=============== --- linux-2.6.16-rc5.orig/arch/i386/kernel/setup.c 2006-03-10 12:55:05.000000000 -0800 +++ linux-2.6.16-rc5/arch/i386/kernel/setup.c 2006-03-10 13:03:39.000000000 -0800 @@ -1555,6 +1555,7 @@ void __init setup_arch(char **cmdline_p) parse_cmdline_early(cmdline_p); max_low_pfn = setup_memory(); + mach_map_linear_range(__PAGE_OFFSET, max_low_pfn, 0); /* * NOTE: before this point _nobody_ is allowed to allocate Index: linux-2.6.16-rc5/arch/i386/mm/fault.c =================================================================== --- linux-2.6.16-rc5.orig/arch/i386/mm/fault.c 2006-03-10 1...
2007 Apr 18
0
[PATCH 4/5] Vmi.patch
...12 13:51:13 2006 -0800 @@ -60,6 +60,7 @@ #include <asm/io_apic.h> #include <asm/ist.h> #include <asm/io.h> +#include <asm/vmi.h> #include <setup_arch.h> #include <bios_ebda.h> @@ -581,6 +582,14 @@ void __init setup_arch(char **cmdline_p) max_low_pfn = setup_memory(); +#ifdef CONFIG_VMI + /* + * Must be after max_low_pfn is determined, and before kernel + * pagetables are setup. + */ + vmi_init(); +#endif + /* * NOTE: before this point _nobody_ is allowed to allocate * any memory using the bootmem allocator. Although the diff -r d8711b11c1eb arc...
2007 Apr 18
0
[PATCH 4/5] Vmi.patch
...12 13:51:13 2006 -0800 @@ -60,6 +60,7 @@ #include <asm/io_apic.h> #include <asm/ist.h> #include <asm/io.h> +#include <asm/vmi.h> #include <setup_arch.h> #include <bios_ebda.h> @@ -581,6 +582,14 @@ void __init setup_arch(char **cmdline_p) max_low_pfn = setup_memory(); +#ifdef CONFIG_VMI + /* + * Must be after max_low_pfn is determined, and before kernel + * pagetables are setup. + */ + vmi_init(); +#endif + /* * NOTE: before this point _nobody_ is allowed to allocate * any memory using the bootmem allocator. Although the diff -r d8711b11c1eb arc...
2007 Apr 18
0
[PATCH 5/6] VMI backend for paravirt-ops
...12 13:51:13 2006 -0800 @@ -60,6 +60,7 @@ #include <asm/io_apic.h> #include <asm/ist.h> #include <asm/io.h> +#include <asm/vmi.h> #include <setup_arch.h> #include <bios_ebda.h> @@ -581,6 +582,14 @@ void __init setup_arch(char **cmdline_p) max_low_pfn = setup_memory(); +#ifdef CONFIG_VMI + /* + * Must be after max_low_pfn is determined, and before kernel + * pagetables are setup. + */ + vmi_init(); +#endif + /* * NOTE: before this point _nobody_ is allowed to allocate * any memory using the bootmem allocator. Although the diff -r d8711b11c1eb arc...
2007 Apr 18
0
[PATCH 5/6] VMI backend for paravirt-ops
...12 13:51:13 2006 -0800 @@ -60,6 +60,7 @@ #include <asm/io_apic.h> #include <asm/ist.h> #include <asm/io.h> +#include <asm/vmi.h> #include <setup_arch.h> #include <bios_ebda.h> @@ -581,6 +582,14 @@ void __init setup_arch(char **cmdline_p) max_low_pfn = setup_memory(); +#ifdef CONFIG_VMI + /* + * Must be after max_low_pfn is determined, and before kernel + * pagetables are setup. + */ + vmi_init(); +#endif + /* * NOTE: before this point _nobody_ is allowed to allocate * any memory using the bootmem allocator. Although the diff -r d8711b11c1eb arc...
2006 Jul 26
5
linux-2.6-xen.hg
Hi, Is the http://xenbits.xensource.com/linux-2.6-xen.hg tree still being updated? if not, what''s the preferred Linux tree to track that has all of the Xen bits? Thanks, Muli _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Apr 18
33
[RFC PATCH 00/33] Xen i386 paravirtualization support
Unlike full virtualization in which the virtual machine provides the same platform interface as running natively on the hardware, paravirtualization requires modification to the guest operating system to work with the platform interface provided by the hypervisor. Xen was designed with performance in mind. Calls to the hypervisor are minimized, batched if necessary, and non-critical codepaths