target/hppa: Only use EXCP_DTLB_MISS
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 29 Dec 2017 03:26:52 +0000 (19:26 -0800)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 31 Jan 2018 13:30:50 +0000 (05:30 -0800)
Unknown why this works, but if we return EXCP_ITLB_MISS we
will triple-fault the first userland instruction fetch.
Is it something to do with having a combined I/DTLB?

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
target/hppa/mem_helper.c

index bf7559ba9e533eebb4f62ea86744dcee8ab0a252..ab160c2a74b6ec32dbce9c88dd6c2d7435044530 100644 (file)
@@ -96,7 +96,9 @@ int hppa_get_physical_address(CPUHPPAState *env, vaddr addr, int mmu_idx,
     if (ent == NULL || !ent->entry_valid) {
         phys = 0;
         prot = 0;
-        ret = (type & PAGE_EXEC ? EXCP_ITLB_MISS : EXCP_DTLB_MISS);
+        /* ??? Unconditionally report data tlb miss,
+           even if this is an instruction fetch.  */
+        ret = EXCP_DTLB_MISS;
         goto egress;
     }