search for: lguest_maybe_init

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

2007 Apr 18
1
[PATCH] lguest: clean up some l"references .init.text" warnings
Thanks to Andrew for pointing these out. This patch moves the parvirtprobe section into .init.data: it's only used in very very early boot, and for similar reasons, puts lguest_maybe_init and lguest_memory_setup in init.text. As well as fixing some warnings, this frees up a tiny bit more memory. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> diff -r ecec388180b2 arch/i386/kernel/vmlinux.lds.S --- a/arch/i386/kernel/vmlinux.lds.S Mon Mar 19 14:58:08 2007 +1100 +++ b/ar...
2007 Apr 18
1
[PATCH] lguest: clean up some l"references .init.text" warnings
Thanks to Andrew for pointing these out. This patch moves the parvirtprobe section into .init.data: it's only used in very very early boot, and for similar reasons, puts lguest_maybe_init and lguest_memory_setup in init.text. As well as fixing some warnings, this frees up a tiny bit more memory. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> diff -r ecec388180b2 arch/i386/kernel/vmlinux.lds.S --- a/arch/i386/kernel/vmlinux.lds.S Mon Mar 19 14:58:08 2007 +1100 +++ b/ar...
2007 May 06
1
[PATCH 1/3] lguest: 2.6.21-mm1 update: lguest-remove-unnecessary-gdt-load.patch
Andrew did a great job of merging in the PDA->percpu changes and lguest code for 2.6.21-mm1, but the load_gdt is now unnecessary. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> --- drivers/lguest/lguest.c | 4 ---- 1 file changed, 4 deletions(-) =================================================================== --- a/drivers/lguest/lguest.c +++ b/drivers/lguest/lguest.c @@
2007 May 06
1
[PATCH 1/3] lguest: 2.6.21-mm1 update: lguest-remove-unnecessary-gdt-load.patch
Andrew did a great job of merging in the PDA->percpu changes and lguest code for 2.6.21-mm1, but the load_gdt is now unnecessary. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> --- drivers/lguest/lguest.c | 4 ---- 1 file changed, 4 deletions(-) =================================================================== --- a/drivers/lguest/lguest.c +++ b/drivers/lguest/lguest.c @@
2007 Apr 18
1
[PATCH 0/8] lguest
As promised to Andrew, and with much thanks to Andi Kleen for feedback, this is the new series of lguest patches. Main change is the move to drivers/lguest (for future non-i386 expansion), but lots of cleanups driven by Andi's feedback and the documentation effort (which made me examine every line of code). It's not perfect, but it's definitely useful. Cheers, Rusty. List of
2007 Apr 18
1
[PATCH 0/8] lguest
As promised to Andrew, and with much thanks to Andi Kleen for feedback, this is the new series of lguest patches. Main change is the move to drivers/lguest (for future non-i386 expansion), but lots of cleanups driven by Andi's feedback and the documentation effort (which made me examine every line of code). It's not perfect, but it's definitely useful. Cheers, Rusty. List of
2007 Apr 18
1
[PATCH] lguest32 kallsyms backtrace of guest.
...linux-2.6.21-rc5-mm2/drivers/lguest/lguest.c =================================================================== --- linux-2.6.21-rc5-mm2.orig/drivers/lguest/lguest.c +++ linux-2.6.21-rc5-mm2/drivers/lguest/lguest.c @@ -48,6 +48,14 @@ extern const char lgstart_iret[], lgend_ extern asmlinkage void lguest_maybe_init(void); extern void lguest_iret(void); +/* For back tracing from the HV */ +extern const unsigned long kallsyms_addresses[] __attribute__((weak)); +extern const unsigned long kallsyms_num_syms __attribute__((weak)); +extern const u8 kallsyms_names[] __attribute__((weak)); +extern const u8 kallsym...
2007 Apr 18
1
[PATCH] lguest32 kallsyms backtrace of guest.
...linux-2.6.21-rc5-mm2/drivers/lguest/lguest.c =================================================================== --- linux-2.6.21-rc5-mm2.orig/drivers/lguest/lguest.c +++ linux-2.6.21-rc5-mm2/drivers/lguest/lguest.c @@ -48,6 +48,14 @@ extern const char lgstart_iret[], lgend_ extern asmlinkage void lguest_maybe_init(void); extern void lguest_iret(void); +/* For back tracing from the HV */ +extern const unsigned long kallsyms_addresses[] __attribute__((weak)); +extern const unsigned long kallsyms_num_syms __attribute__((weak)); +extern const u8 kallsyms_names[] __attribute__((weak)); +extern const u8 kallsym...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...+ acpi_ht = 0; +#endif + if (boot->initrd_size) { + /* We stash this at top of memory. */ + INITRD_START = boot->max_pfn*PAGE_SIZE - boot->initrd_size; + INITRD_SIZE = boot->initrd_size; + LOADER_TYPE = 0xFF; + } + pm_power_off = lguest_power_off; + + start_kernel(); +} + +asm("lguest_maybe_init:\n" + " cmpq $"__stringify(LGUEST_MAGIC_R13)", %r13\n" + " jne 1f\n" + " cmpq $"__stringify(LGUEST_MAGIC_R14)", %r14\n" + " jne 1f\n" + " cmpq $"__stringify(LGUEST_MAGIC_R15)", %r15\n" + " je...
2007 Apr 18
1
[RFC/PATCH LGUEST X86_64 03/13] lguest64 core
...+ acpi_ht = 0; +#endif + if (boot->initrd_size) { + /* We stash this at top of memory. */ + INITRD_START = boot->max_pfn*PAGE_SIZE - boot->initrd_size; + INITRD_SIZE = boot->initrd_size; + LOADER_TYPE = 0xFF; + } + pm_power_off = lguest_power_off; + + start_kernel(); +} + +asm("lguest_maybe_init:\n" + " cmpq $"__stringify(LGUEST_MAGIC_R13)", %r13\n" + " jne 1f\n" + " cmpq $"__stringify(LGUEST_MAGIC_R14)", %r14\n" + " jne 1f\n" + " cmpq $"__stringify(LGUEST_MAGIC_R15)", %r15\n" + " je...