From: Jerone Young <jyoung5@us.ibm.com>
To: "Puthiyaparambil, Aravindh" <aravindh.puthiyaparambil@unisys.com>
Cc: xen-devel@lists.xensource.com, "Magolan,
John F" <John.Magolan@unisys.com>,
"Nakajima, Jun" <jun.nakajima@intel.com>,
"Subrahmanian, Raj" <raj.subrahmanian@unisys.com>,
"Davis, Jason" <jason.davis@unisys.com>,
"Vessey, Bruce A" <Bruce.Vessey@unisys.com>
Subject: RE: Xen on ES7000 x86_64 take 2
Date: Fri, 15 Jul 2005 13:23:07 -0500 [thread overview]
Message-ID: <1121451787.3036.13.camel@thinkpad> (raw)
In-Reply-To: <EF8D308BE33AF54D8934DF26520252D30238045E@USTR-EXCH5.na.uis.unisys.com>
[-- Attachment #1: Type: text/plain, Size: 2639 bytes --]
I sent a patch on the list last week that removes the use of the NX bit
from Xen. Could you try it out. I've attached it to this email.
On Fri, 2005-07-15 at 13:59 -0400, Puthiyaparambil, Aravindh wrote:
> As of now there is no BIOS option to enable it. :-(
>
> > -----Original Message-----
> > From: Nakajima, Jun [mailto:jun.nakajima@intel.com]
> > Sent: Friday, July 15, 2005 1:52 PM
> > To: Puthiyaparambil, Aravindh; xen-devel@lists.xensource.com
> > Cc: Magolan, John F; Subrahmanian, Raj; Davis, Jason; Vessey, Bruce A
> > Subject: RE: [Xen-devel] Xen on ES7000 x86_64 take 2
> >
> > Puthiyaparambil, Aravindh wrote:
> > > I am still trying to bring Xen up on the ES7000 x86_64. I have a
> > > feeling that the NX/XD is disabled on the system and it is tripping
> > > things up.
> > >
> > > Jun, could you please confirm this? Here is the output you had asked
> > > from me sometime ago. The complete boot output is included below.
> > >
> > > (XEN) CPU: After generic identify, caps: bfebfbff 20000800 00000000
> > > 00000000 00004595 00000000 00000000
> >
> > Yes, it's disabled. 20000800 should become 20100800. Is there any BIOS
> > setup to enable it?
> >
> > Jun
> > ---
> > Intel Open Source Technology Center
> >
> > >
> > > Thanks
> > > Aravindh
> > >
> > >
> >
> ------------------------------------------------------------------------
> > >
> > >> -----Original Message-----
> > >> From: Nakajima, Jun [mailto:jun.nakajima@intel.com]
> > >> Sent: Saturday, July 02, 2005 2:11 AM
> > >> To: Puthiyaparambil, Aravindh; xen-devel@lists.xensource.com
> > >> Cc: Magolan, John F; Subrahmanian, Raj; Davis, Jason; Vessey, Bruce
> A
> > >> Subject: RE: [Xen-devel] Xen on ES7000 x86_64
> > >>
> > >> Puthiyaparambil, Aravindh wrote:
> > >>> I am trying to bring Xen up on the ES7000 x86_64 box. I have some
> of
> > >>> my patches along with Don Fry's per-cpu-timer patch. I have
> included
> > >>> the debug output. I am wondering if this is similar to Bug#75 or
> if
> > >>> it is a different problem altogether.
> > >>
> > >> Is it possbile NX/XD is disabled? Can you try
> > >> #define NOISY_CAPS 1
> > >> in xen/arch/x86/cpu/common.c and report the line like:
> > >>
> > >> (XEN) CPU: After generic identify, caps: bfebfbff 20100800 00000000
> > >> 00000000 000 065bd 00000000 00000001
> > >>
> > >> Jun
> > >> ---
> > >> Intel Open Source Technology Center
> >
> >
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
--
Jerone Young
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
[-- Attachment #2: rm_nx_patch.diff --]
[-- Type: text/x-patch, Size: 2011 bytes --]
--- linux-2.6.11-xen-sparse/include/asm-xen/asm-x86_64/pgtable.h.old 2005-07-08 00:04:22.000000000 -0500
+++ linux-2.6.11-xen-sparse/include/asm-xen/asm-x86_64/pgtable.h 2005-07-08 00:05:23.000000000 -0500
@@ -191,21 +191,21 @@ static inline pte_t ptep_get_and_clear(p
#define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
#define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
-#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
+#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
#define PAGE_SHARED_EXEC __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
-#define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
+#define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
#define PAGE_COPY PAGE_COPY_NOEXEC
#define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
-#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
+#define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
#define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
#define __PAGE_KERNEL \
- (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_NX | _PAGE_USER )
+ (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_USER )
#define __PAGE_KERNEL_EXEC \
(_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_USER )
#define __PAGE_KERNEL_NOCACHE \
- (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_PCD | _PAGE_ACCESSED | _PAGE_NX | _PAGE_USER )
+ (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_PCD | _PAGE_ACCESSED | _PAGE_USER )
#define __PAGE_KERNEL_RO \
- (_PAGE_PRESENT | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_NX | _PAGE_USER )
+ (_PAGE_PRESENT | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_USER )
#define __PAGE_KERNEL_VSYSCALL \
(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_USER )
#define __PAGE_KERNEL_VSYSCALL_NOCACHE \
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
next prev parent reply other threads:[~2005-07-15 18:23 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-15 17:59 Xen on ES7000 x86_64 take 2 Puthiyaparambil, Aravindh
2005-07-15 18:23 ` Jerone Young [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-07-16 13:17 Puthiyaparambil, Aravindh
2005-07-16 9:41 Ian Pratt
2005-07-15 22:06 Puthiyaparambil, Aravindh
2005-07-15 21:34 Nakajima, Jun
2005-07-15 21:18 Nakajima, Jun
2005-07-15 21:15 Puthiyaparambil, Aravindh
2005-07-18 19:44 ` Jerone Young
2005-07-15 18:51 Puthiyaparambil, Aravindh
2005-07-15 18:17 Nakajima, Jun
2005-07-15 18:21 ` Jerone Young
2005-07-15 17:51 Nakajima, Jun
2005-07-15 17:30 Puthiyaparambil, Aravindh
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=1121451787.3036.13.camel@thinkpad \
--to=jyoung5@us.ibm.com \
--cc=Bruce.Vessey@unisys.com \
--cc=John.Magolan@unisys.com \
--cc=aravindh.puthiyaparambil@unisys.com \
--cc=jason.davis@unisys.com \
--cc=jun.nakajima@intel.com \
--cc=raj.subrahmanian@unisys.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.