Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-9]: src/sys/arch/aarch64/aarch64 Pull up following revision(s) (r...
details: https://anonhg.NetBSD.org/src/rev/b445382abbda
branches: netbsd-9
changeset: 962768:b445382abbda
user: martin <martin%NetBSD.org@localhost>
date: Wed Aug 07 10:19:54 2019 +0000
description:
Pull up following revision(s) (requested by jmcneill in ticket #27):
sys/arch/aarch64/aarch64/trap.c: revision 1.18
trap_el0_32sync: add missing break to ESR_EC_FP_TRAP_A32 case
diffstat:
sys/arch/aarch64/aarch64/trap.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (26 lines):
diff -r 845df0d66101 -r b445382abbda sys/arch/aarch64/aarch64/trap.c
--- a/sys/arch/aarch64/aarch64/trap.c Wed Aug 07 10:18:13 2019 +0000
+++ b/sys/arch/aarch64/aarch64/trap.c Wed Aug 07 10:19:54 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.17 2019/04/06 03:06:24 thorpej Exp $ */
+/* $NetBSD: trap.c,v 1.17.4.1 2019/08/07 10:19:54 martin Exp $ */
/*-
* Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: trap.c,v 1.17 2019/04/06 03:06:24 thorpej Exp $");
+__KERNEL_RCSID(1, "$NetBSD: trap.c,v 1.17.4.1 2019/08/07 10:19:54 martin Exp $");
#include "opt_arm_intr_impl.h"
#include "opt_compat_netbsd32.h"
@@ -355,6 +355,7 @@
case ESR_EC_FP_TRAP_A32:
do_trapsignal(l, SIGFPE, FPE_FLTUND, NULL, esr); /* XXX */
userret(l);
+ break;
case ESR_EC_PC_ALIGNMENT:
do_trapsignal(l, SIGBUS, BUS_ADRALN, (void *)tf->tf_pc, esr);
Home |
Main Index |
Thread Index |
Old Index