|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] Re: Build break with PAE enabled
> to "CONFIG_PAGING_LEVELS >= 3", maybe I forgot to include some
> into the patch ...
Yep, I did, shadow_public.c bits are missing, sorry for trouble.
Gerd
Index: xen/arch/x86/shadow_public.c
===================================================================
--- xen.orig/arch/x86/shadow_public.c 2005-08-02 12:16:16.000000000 +0200
+++ xen/arch/x86/shadow_public.c 2005-08-02 13:05:27.000000000 +0200
@@ -30,7 +30,7 @@
#include <xen/sched.h>
#include <xen/trace.h>
-#if CONFIG_PAGING_LEVELS >= 4
+#if CONFIG_PAGING_LEVELS >= 3
#include <asm/shadow_64.h>
extern struct shadow_ops MODE_F_HANDLER;
@@ -233,7 +233,20 @@ void free_monitor_pagetable(struct vcpu
v->arch.monitor_vtable = 0;
}
+#elif CONFIG_PAGING_LEVELS == 3
+
+static void alloc_monitor_pagetable(struct vcpu *v)
+{
+ BUG(); /* PAE not implemented yet */
+}
+
+void free_monitor_pagetable(struct vcpu *v)
+{
+ BUG(); /* PAE not implemented yet */
+}
+
#elif CONFIG_PAGING_LEVELS == 2
+
static void alloc_monitor_pagetable(struct vcpu *v)
{
unsigned long mmfn;
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|