diff mbox

[PULL,05/39] target-arm: Set exception target EL in tlb_fill

Message ID 1432905045-22138-6-git-send-email-peter.maydell@linaro.org
State New
Headers show

Commit Message

Peter Maydell May 29, 2015, 1:10 p.m. UTC
Set the exception target EL for MMU faults in tlb_fill.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
---
 target-arm/op_helper.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

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);