aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/head_64.S
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2013-02-27 19:16:39 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-02-27 19:16:39 -0500
commit18a44a7ff1075ce5157ac07cde573aca6b5e9973 (patch)
tree8b857b12887da983b75bfd0d693df23edb810ba5 /arch/x86/kernel/head_64.S
parent309667e53fcfd8e0b423280b6ea5a648fd92166c (diff)
parent7c10093692ed2e6f318387d96b829320aa0ca64c (diff)
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull more x86 fixes from Peter Anvin: "Additional x86 fixes. Three of these patches are pure documentation, two are pretty trivial; the remaining one fixes boot problems on some non-BIOS machines." * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86: Make sure we can boot in the case the BDA contains pure garbage x86, efi: Mark disable_runtime as __initdata x86, doc: Fix incorrect comment about 64-bit code segment descriptors doc, kernel-parameters: Document 'console=hvc<n>' doc, xen: Mention 'earlyprintk=xen' in the documentation. ACPI: Overriding ACPI tables via initrd only works with an initrd and on X86
Diffstat (limited to 'arch/x86/kernel/head_64.S')
-rw-r--r--arch/x86/kernel/head_64.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/head_64.S b/arch/x86/kernel/head_64.S
index b7de3b25adb5..6859e9626442 100644
--- a/arch/x86/kernel/head_64.S
+++ b/arch/x86/kernel/head_64.S
@@ -48,7 +48,7 @@ L3_START_KERNEL = pud_index(__START_KERNEL_map)
48 .globl startup_64 48 .globl startup_64
49startup_64: 49startup_64:
50 /* 50 /*
51 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 1, 51 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 0,
52 * and someone has loaded an identity mapped page table 52 * and someone has loaded an identity mapped page table
53 * for us. These identity mapped page tables map all of the 53 * for us. These identity mapped page tables map all of the
54 * kernel pages and possibly all of memory. 54 * kernel pages and possibly all of memory.
@@ -159,7 +159,7 @@ startup_64:
159 jmp 1f 159 jmp 1f
160ENTRY(secondary_startup_64) 160ENTRY(secondary_startup_64)
161 /* 161 /*
162 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 1, 162 * At this point the CPU runs in 64bit mode CS.L = 1 CS.D = 0,
163 * and someone has loaded a mapped page table. 163 * and someone has loaded a mapped page table.
164 * 164 *
165 * %rsi holds a physical pointer to real_mode_data. 165 * %rsi holds a physical pointer to real_mode_data.