search for: no_paravirt_desc

Displaying 5 results from an estimated 5 matches for "no_paravirt_desc".

2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
Hi all, I've been looking at finding common ground between the VMI, Xen and other paravirtualization approaches, and after some discussion, we're getting somewhere. These first two patches are the fundamentals, stolen mainly from the VMI patches: removing assumptions about the kernel running in ring 0, and macro-izing all the obvious para-virtualize-needing insns. The third patch is
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
Hi all, I've been looking at finding common ground between the VMI, Xen and other paravirtualization approaches, and after some discussion, we're getting somewhere. These first two patches are the fundamentals, stolen mainly from the VMI patches: removing assumptions about the kernel running in ring 0, and macro-izing all the obvious para-virtualize-needing insns. The third patch is
2007 Apr 18
3
[PATCH 1/4] x86 paravirt_ops: create no_paravirt.h for native ops
(Andrew, please sit these in the -mm tree for cooking) Create a paravirt.h header for (almost) all the critical operations which need to be replaced with hypervisor calls. For the moment, this simply includes no_paravirt.h, where all the native implementations now live. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Zachary Amsden <zach@vmware.com>
2007 Apr 18
3
[PATCH 1/4] x86 paravirt_ops: create no_paravirt.h for native ops
(Andrew, please sit these in the -mm tree for cooking) Create a paravirt.h header for (almost) all the critical operations which need to be replaced with hypervisor calls. For the moment, this simply includes no_paravirt.h, where all the native implementations now live. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Zachary Amsden <zach@vmware.com>
2007 Apr 18
3
[PATCH 1/2] paravirt.h header
...==================== --- a/include/asm-i386/paravirt_desc.h +++ b/include/asm-i386/paravirt_desc.h @@ -1,6 +1,10 @@ #ifndef __ASM_PARAVIRT_DESC_H #define __ASM_PARAVIRT_DESC_H /* A separate header because they need processor.h, which needs paravirt.h */ +#ifndef CONFIG_PARAVIRT #include <asm/no_paravirt_desc.h> +#else +#include <asm/paravirt.h> +#endif #endif /* __ASM_PARAVIRT_DESC_H */ =================================================================== --- /dev/null +++ b/arch/i386/kernel/paravirt.c @@ -0,0 +1,382 @@ +/* Paravirtualization interfaces + Copyright (C) 2006 Rusty Russell...