From: "Alexander van Heukelum" <heukelum@fastmail.fm>
To: "Steven Rostedt" <rostedt@goodmis.org>,
"LKML" <linux-kernel@vger.kernel.org>
Cc: sct@redhat.com, ak@suse.de, herbert@gondor.apana.org.au,
xen-devel@lists.xensource.com, heukelum@mailshack.com
Subject: Re: [PATCH] shorten the x86_64 boot setup GDT to what the comment says
Date: Thu, 09 Nov 2006 15:54:32 +0100 [thread overview]
Message-ID: <1163084072.31014.275411753@webmail.messagingengine.com> (raw)
In-Reply-To: <Pine.LNX.4.58.0611082144410.17812@gandalf.stny.rr.com>
> Andi,
>
> Stephen Tweedie, Herbert Xu, and myself have been struggling with a very
> nasty bug in Xen. But it also pointed out a small bug in the x86_64
> kernel boot setup.
>
> The GDT limit being setup by the initial bzImage code when entering into
> protected mode is way too big. The comment by the code states that the
> size of the GDT is 2048, but the actual size being set up is much bigger
> (32768). This happens simply because of one extra '0'.
>
> Instead of setting up a 0x800 size, 0x8000 is set up. On bare metal this
> is fine because the CPU wont load any segments unless they are
> explicitly used. But unfortunately, this breaks Xen on vmx FV, since it
> (for now) blindly loads all the segments into the VMCS if they are less
> than the gdt limit. Since the real mode segments are around 0x3000, we
> are
> getting junk into the VMCS and that later causes an exception.
>
> Stephen Tweedie has written up a patch to fix the Xen side and will be
> submitting that to those folks. But that doesn't excuse the GDT limit
> being a magnitude too big.
>
> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
>
> Index: linux-2.6.19-rc2/arch/x86_64/boot/setup.S
> ===================================================================
> --- linux-2.6.19-rc2.orig/arch/x86_64/boot/setup.S 2006-11-08
> 21:37:58.000000000 -0500
> +++ linux-2.6.19-rc2/arch/x86_64/boot/setup.S 2006-11-08
> 21:38:16.000000000 -0500
> @@ -840,7 +840,7 @@ idt_48:
> .word 0 # idt limit = 0
> .word 0, 0 # idt base = 0L
> gdt_48:
> - .word 0x8000 # gdt limit=2048,
> + .word 0x800 # gdt limit=2048,
> # 256 GDT entries
>
> .word 0, 0 # gdt base (filled in later)
The limit should be the offset of the last byte of the gdt table. So
I think what was meant was really 0x7ff. Comparing this code with the
i386-version, why does x86_64 need 256 entries here, while i386 is happy
with just the code-segment and data-segment descriptors?
Greetings,
Alexander
--
Alexander van Heukelum
heukelum@fastmail.fm
--
http://www.fastmail.fm - And now for something completely different
next prev parent reply other threads:[~2006-11-09 14:54 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-09 3:01 [PATCH] shorten the x86_64 boot setup GDT to what the comment says Steven Rostedt
2006-11-09 13:13 ` Andi Kleen
2006-11-09 13:13 ` Andi Kleen
2006-11-09 15:31 ` [Xen-devel] " Jan Beulich
2006-11-09 15:31 ` Jan Beulich
2006-11-09 13:31 ` Andi Kleen
2006-11-09 13:31 ` Andi Kleen
2006-11-09 14:54 ` Alexander van Heukelum [this message]
2006-11-09 15:18 ` Steven Rostedt
2006-11-09 15:44 ` Alexander van Heukelum
2006-11-09 13:33 ` Andi Kleen
2006-11-09 18:31 ` Alexander van Heukelum
2006-11-10 14:01 ` Andi Kleen
2006-11-10 15:46 ` Alexander van Heukelum
2006-11-12 13:47 ` Alexander van Heukelum
2006-11-11 5:17 ` [PATCH] make x86_64 boot gdt size exact (like x86) Steven Rostedt
2006-11-11 6:42 ` Andi Kleen
2006-11-11 6:42 ` Andi Kleen
2006-11-13 15:37 ` Steven Rostedt
2006-11-13 16:47 ` Andi Kleen
2006-11-13 16:47 ` Andi Kleen
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=1163084072.31014.275411753@webmail.messagingengine.com \
--to=heukelum@fastmail.fm \
--cc=ak@suse.de \
--cc=herbert@gondor.apana.org.au \
--cc=heukelum@mailshack.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
--cc=sct@redhat.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.