qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

target/i386: Fix OUTL debug output

Fix OUTL instructions incorrectly displayed as OUTW.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200517110147.26026-1-f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

authored by

Philippe Mathieu-Daudé and committed by
Paolo Bonzini
ce8540fd 4a39181d

+1 -1
+1 -1
target/i386/misc_helper.c
··· 70 70 void helper_outl(CPUX86State *env, uint32_t port, uint32_t data) 71 71 { 72 72 #ifdef CONFIG_USER_ONLY 73 - fprintf(stderr, "outw: port=0x%04x, data=%08x\n", port, data); 73 + fprintf(stderr, "outl: port=0x%04x, data=%08x\n", port, data); 74 74 #else 75 75 address_space_stl(&address_space_io, port, data, 76 76 cpu_get_mem_attrs(env), NULL);