From: Aurelien Jarno Date: Tue, 16 May 2017 22:48:18 +0000 (+0200) Subject: target/sh4: log unauthorized accesses using qemu_log_mask X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=324189babbc0b70d9ce558deb63d33040d002b7a;p=qemu.git target/sh4: log unauthorized accesses using qemu_log_mask qemu_log_mask() is preferred over fprintf() for logging errors. Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Signed-off-by: Aurelien Jarno --- diff --git a/target/sh4/helper.c b/target/sh4/helper.c index 8f8ce81401..4c024f9529 100644 --- a/target/sh4/helper.c +++ b/target/sh4/helper.c @@ -420,7 +420,7 @@ static int get_physical_address(CPUSH4State * env, target_ulong * physical, if (!(env->sr & (1u << SR_MD)) && (address < 0xe0000000 || address >= 0xe4000000)) { /* Unauthorized access in user mode (only store queues are available) */ - fprintf(stderr, "Unauthorized access\n"); + qemu_log_mask(LOG_GUEST_ERROR, "Unauthorized access\n"); if (rw == 0) return MMU_DADDR_ERROR_READ; else if (rw == 1)