Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amd64/amd64 Mmh, I mistakenly removed the lapic pag...



details:   https://anonhg.NetBSD.org/src/rev/4d5f1357344a
branches:  trunk
changeset: 818989:4d5f1357344a
user:      maxv <maxv%NetBSD.org@localhost>
date:      Fri Nov 11 11:31:26 2016 +0000

description:
Mmh, I mistakenly removed the lapic page (which is part of another diff),
put it back in.

diffstat:

 sys/arch/amd64/amd64/locore.S |  12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diffs (26 lines):

diff -r cdca1956db65 -r 4d5f1357344a sys/arch/amd64/amd64/locore.S
--- a/sys/arch/amd64/amd64/locore.S     Fri Nov 11 11:12:42 2016 +0000
+++ b/sys/arch/amd64/amd64/locore.S     Fri Nov 11 11:31:26 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore.S,v 1.111 2016/11/11 10:40:00 maxv Exp $        */
+/*     $NetBSD: locore.S,v 1.112 2016/11/11 11:31:26 maxv Exp $        */
 
 /*
  * Copyright-o-rama!
@@ -313,6 +313,16 @@
  */
        .data
 
+#if NLAPIC > 0
+       .align  PAGE_SIZE
+       .globl  _C_LABEL(local_apic)
+
+       .type   _C_LABEL(local_apic), @object
+LABEL(local_apic)
+       .space  PAGE_SIZE
+END(local_apic)
+#endif
+
        .globl  _C_LABEL(tablesize)
        .globl  _C_LABEL(nox_flag)
        .globl  _C_LABEL(cputype)



Home | Main Index | Thread Index | Old Index