From: Peter Maydell Date: Mon, 6 Nov 2017 18:33:25 +0000 (+0000) Subject: linux-user/sparc: Put address for data faults where linux-user expects it X-Git-Tag: v2.11.0-rc2~10^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d8cb956e0a679fcf0a8e24f1b2f34e038cdd48e;p=thirdparty%2Fqemu.git linux-user/sparc: Put address for data faults where linux-user expects it In the user-mode-only version of sparc_cpu_handle_mmu_fault(), we must save the fault address for a data fault into the CPU state's mmu registers, because the code in linux-user/main.c expects to find it there in order to populate the si_addr field of the guest siginfo. Reviewed-by: Laurent Vivier Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Peter Maydell Signed-off-by: Riku Voipio --- diff --git a/target/sparc/mmu_helper.c b/target/sparc/mmu_helper.c index 126ea5e3ee5..d5b6c1e48cc 100644 --- a/target/sparc/mmu_helper.c +++ b/target/sparc/mmu_helper.c @@ -30,10 +30,18 @@ int sparc_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw, int mmu_idx) { + SPARCCPU *cpu = SPARC_CPU(cs); + CPUSPARCState *env = &cpu->env; + if (rw & 2) { cs->exception_index = TT_TFAULT; } else { cs->exception_index = TT_DFAULT; +#ifdef TARGET_SPARC64 + env->dmmu.mmuregs[4] = address; +#else + env->mmuregs[4] = address; +#endif } return 1; }