From: David Gibson Date: Mon, 29 Apr 2013 18:33:52 +0000 (+0000) Subject: pseries: Fix debug message for out-of-bounds address in H_PUT_TCE X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b55519a0f29fca0ef7ebc5d87ee4bfa7304dc219;p=qemu.git pseries: Fix debug message for out-of-bounds address in H_PUT_TCE Due to a brain outage, this message says "out-of-boards" instead of "out-of-bounds". Signed-off-by: David Gibson Signed-off-by: Alexey Kardashevskiy Signed-off-by: Alexander Graf --- diff --git a/hw/ppc/spapr_iommu.c b/hw/ppc/spapr_iommu.c index c6aa4fe7e5..e1fe94115f 100644 --- a/hw/ppc/spapr_iommu.c +++ b/hw/ppc/spapr_iommu.c @@ -205,7 +205,7 @@ static target_ulong put_tce_emu(sPAPRTCETable *tcet, target_ulong ioba, sPAPRTCE *tcep; if (ioba >= tcet->window_size) { - hcall_dprintf("spapr_vio_put_tce on out-of-boards IOBA 0x" + hcall_dprintf("spapr_vio_put_tce on out-of-bounds IOBA 0x" TARGET_FMT_lx "\n", ioba); return H_PARAMETER; }