Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=387faedb1dee2e917811acd05902cc36142a4850
Commit:     387faedb1dee2e917811acd05902cc36142a4850
Parent:     acd644bb4abb4d9f0ba6b9ec2b356263971ef9d0
Author:     H. Peter Anvin <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 30 13:33:04 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Wed Jan 30 13:33:04 2008 +0100

    x86 setup: correct the base in the GDT_ENTRY() macro
    
    The GDT_ENTRY() macro in pm.c would incorrectly cut the bottom 8 bits
    off the base.  We didn't define any bases with the bottom 8 bits
    nonzero, so it is a non-manifest bug, but it's still a bug.
    
    Pointed out by John Smith <[EMAIL PROTECTED]>.
    Cc: John Smith <[EMAIL PROTECTED]>
    Signed-off-by: H. Peter Anvin <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 arch/x86/boot/pm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/boot/pm.c b/arch/x86/boot/pm.c
index b23cbdc..1a0f936 100644
--- a/arch/x86/boot/pm.c
+++ b/arch/x86/boot/pm.c
@@ -104,7 +104,7 @@ static void reset_coprocessor(void)
        (((u64)(base & 0xff000000) << 32) |     \
         ((u64)flags << 40) |                   \
         ((u64)(limit & 0x00ff0000) << 32) |    \
-        ((u64)(base & 0x00ffff00) << 16) |     \
+        ((u64)(base & 0x00ffffff) << 16) |     \
         ((u64)(limit & 0x0000ffff)))
 
 struct gdt_ptr {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to