From 863b6589d738d0b4c8b283297b0ff228f3d3fb14 Mon Sep 17 00:00:00 2001 From: Peter Maydell Date: Fri, 29 May 2015 11:28:51 +0100 Subject: [PATCH] target-arm: Set exception target EL in tlb_fill Set the exception target EL for MMU faults in tlb_fill. Signed-off-by: Peter Maydell Reviewed-by: Edgar E. Iglesias --- target-arm/op_helper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/target-arm/op_helper.c b/target-arm/op_helper.c index c9f5821..9ab7c61 100644 --- a/target-arm/op_helper.c +++ b/target-arm/op_helper.c @@ -110,6 +110,7 @@ void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx, } env->exception.syndrome = syn; + env->exception.target_el = exception_target_el(env); env->exception.vaddress = addr; env->exception.fsr = ret; raise_exception(env, exc); -- 2.7.4