Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/ia64/ia64 Add kstack_top variable



details:   https://anonhg.NetBSD.org/src/rev/7bd6fee02caf
branches:  trunk
changeset: 822810:7bd6fee02caf
user:      scole <scole%NetBSD.org@localhost>
date:      Sat Apr 08 17:45:22 2017 +0000

description:
Add kstack_top variable

diffstat:

 sys/arch/ia64/ia64/locore.S |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (32 lines):

diff -r 7a151f7f6dbf -r 7bd6fee02caf sys/arch/ia64/ia64/locore.S
--- a/sys/arch/ia64/ia64/locore.S       Sat Apr 08 17:44:27 2017 +0000
+++ b/sys/arch/ia64/ia64/locore.S       Sat Apr 08 17:45:22 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore.S,v 1.6 2014/06/20 12:41:34 joerg Exp $ */
+/*     $NetBSD: locore.S,v 1.7 2017/04/08 17:45:22 scole Exp $ */
        
 /*-
  * Copyright (c) 1998 Doug Rabson
@@ -31,18 +31,18 @@
 #include "opt_multiprocessor.h"
 
 #include <machine/asm.h>
-#include <machine/ia64_cpu.h>
-#include <machine/pte.h>
 #include <machine/elf_machdep.h>
 #include <sys/syscall.h>
 
 #include "assym.h"
 
        .section .data.proc0,"aw"
+       .align  PAGE_SIZE
        .global kstack
-       .align  PAGE_SIZE
 kstack:        .space KSTACK_PAGES * PAGE_SIZE
-
+       .global kstack_top
+kstack_top:
+       
        .text
 
 /*



Home | Main Index | Thread Index | Old Index