Module Name: src
Committed By: martin
Date: Thu Jul 6 05:28:43 UTC 2017
Modified Files:
src/sys/arch/arm/cortex [netbsd-8]: a9_mpsubr.S
Log Message:
Pull up following revision(s) (requested by skrll in ticket #99):
sys/arch/arm/cortex/a9_mpsubr.S: revision 1.48
Make fp 0 on entry to idle_stack to ensure we mark that we're top of
stack
To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.47.8.1 src/sys/arch/arm/cortex/a9_mpsubr.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/cortex/a9_mpsubr.S
diff -u src/sys/arch/arm/cortex/a9_mpsubr.S:1.47 src/sys/arch/arm/cortex/a9_mpsubr.S:1.47.8.1
--- src/sys/arch/arm/cortex/a9_mpsubr.S:1.47 Tue Oct 4 15:18:23 2016
+++ src/sys/arch/arm/cortex/a9_mpsubr.S Thu Jul 6 05:28:43 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: a9_mpsubr.S,v 1.47 2016/10/04 15:18:23 kiyohara Exp $ */
+/* $NetBSD: a9_mpsubr.S,v 1.47.8.1 2017/07/06 05:28:43 martin Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -778,6 +778,7 @@ cortex_mpcontinuation:
movw r2, #:lower16:MD_CPU_HATCH // pass md_cpu_hatch
movt r2, #:upper16:MD_CPU_HATCH // pass md_cpu_hatch
bl _C_LABEL(cpu_hatch)
+ mov fp, #0 // top stack frame
b _C_LABEL(idle_loop) // never to return
ASEND(cortex_mpcontinuation)