From 3947048945c3f6678932f4a793c98467c9c3a4f3 Mon Sep 17 00:00:00 2001 From: andrew Date: Fri, 16 Sep 2016 12:48:58 +0000 Subject: MFC 305128: Also handle instruction traps. We might hit these when the page we are executing is being promoted to a superpage. Obtained from: ABT Systems Ltd Sponsored by: The FreeBSD Foundation --- sys/arm64/arm64/trap.c | 1 + 1 file changed, 1 insertion(+) (limited to 'sys/arm64') diff --git a/sys/arm64/arm64/trap.c b/sys/arm64/arm64/trap.c index 1aca352..6332bd9 100644 --- a/sys/arm64/arm64/trap.c +++ b/sys/arm64/arm64/trap.c @@ -282,6 +282,7 @@ do_el1h_sync(struct trapframe *frame) print_registers(frame); printf(" esr: %.8lx\n", esr); panic("VFP exception in the kernel"); + case EXCP_INSN_ABORT: case EXCP_DATA_ABORT: far = READ_SPECIALREG(far_el1); intr_enable(); -- cgit v1.1