Add missing exception number to EL0 sync. abort on ARM64

When doing a data abort from userland it is possible to get
more than one data abort inside the same exception level.
Add an appropriate exception number to allow nesting of
data_abort handler for EL0.

Reviewed by:   andrew
Obtained from: Semihalf
Sponsored by:  The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D3276
This commit is contained in:
Zbigniew Bodek 2015-08-03 14:58:46 +00:00
parent 0b501d960c
commit 4cbca60875
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=286233

View File

@ -329,6 +329,7 @@ do_el0_sync(struct trapframe *frame)
break;
case EXCP_INSN_ABORT_L:
case EXCP_DATA_ABORT_L:
case EXCP_DATA_ABORT:
data_abort(frame, esr, 1);
break;
default: