From: Gerd Knorr <kraxel@suse.de>
To: Natasha Jarymowycz <natasha@us.ibm.com>
Cc: xen-devel <xen-devel@lists.xensource.com>
Subject: Re: Build break with PAE enabled
Date: Tue, 2 Aug 2005 13:07:47 +0200 [thread overview]
Message-ID: <20050802110747.GB27233@bytesex> (raw)
In-Reply-To: <20050802094827.GC25337@bytesex>
> 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;
prev parent reply other threads:[~2005-08-02 11:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-01 15:09 Build break with PAE enabled Natasha Jarymowycz
2005-08-02 9:48 ` Gerd Knorr
2005-08-02 11:07 ` Gerd Knorr [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20050802110747.GB27233@bytesex \
--to=kraxel@suse.de \
--cc=natasha@us.ibm.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.