Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/amiga/amiga Align tmpstk to 4-byte boundary in the ...



details:   https://anonhg.NetBSD.org/src/rev/39f9ee5ebbb7
branches:  trunk
changeset: 936211:39f9ee5ebbb7
user:      rin <rin%NetBSD.org@localhost>
date:      Tue Jul 21 06:39:31 2020 +0000

description:
Align tmpstk to 4-byte boundary in the same manner as mac68k.

However, unfortunately, this does not fix strange crashes of GCC8-compiled
kernel, for which I cannot even enter DDB nor obtain crash dump.

We need further investigation...

diffstat:

 sys/arch/amiga/amiga/locore.s |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (17 lines):

diff -r 3f76024dd535 -r 39f9ee5ebbb7 sys/arch/amiga/amiga/locore.s
--- a/sys/arch/amiga/amiga/locore.s     Tue Jul 21 06:10:26 2020 +0000
+++ b/sys/arch/amiga/amiga/locore.s     Tue Jul 21 06:39:31 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: locore.s,v 1.158 2020/06/19 07:43:37 rin Exp $ */
+/*     $NetBSD: locore.s,v 1.159 2020/07/21 06:39:31 rin Exp $ */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -1447,6 +1447,7 @@
 
        .data
        .space  PAGE_SIZE
+       .align  4
 ASLOCAL(tmpstk)
 
 GLOBAL(mmutype)



Home | Main Index | Thread Index | Old Index