[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] > to "CONFIG_PAGING_LEVELS >= 3", maybe I forgot to include some
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID eeb45fed8f91a91d2670814baaf5c5b169d8046f # Parent e8178f0adc91f011c48bbe806f9eb84694f0b8e5 > 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 diff -r e8178f0adc91 -r eeb45fed8f91 xen/arch/x86/shadow_public.c --- a/xen/arch/x86/shadow_public.c Tue Aug 2 11:08:47 2005 +++ b/xen/arch/x86/shadow_public.c Tue Aug 2 11:20:12 2005 @@ -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 @@ 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-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |