| From ced48a3d562d22bdaaaf74d3238d69f4577f0fa8 Mon Sep 17 00:00:00 2001 |
| From: Alex Williamson <alex.williamson@redhat.com> |
| Date: Fri, 1 Nov 2013 19:50:38 +0100 |
| Subject: [PATCH 03/25] pci-assign: remove the duplicate function name in debug message |
| |
| RH-Author: Alex Williamson <alex.williamson@redhat.com> |
| Message-id: <20131101195038.25461.59923.stgit@bling.home> |
| Patchwork-id: 55235 |
| O-Subject: [RHEL7 qemu-kvm PATCH 3/3] pci-assign: remove the duplicate function name in debug message |
| Bugzilla: 1025877 |
| RH-Acked-by: Bandan Das <bsd@redhat.com> |
| RH-Acked-by: Jeffrey Cody <jcody@redhat.com> |
| RH-Acked-by: Orit Wasserman <owasserm@redhat.com> |
| |
| From: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
| |
| Bugzilla: 1025877 |
| Upstream commit: bd50cbaa0f34e47c5b82eba1cd1e88143018fa19 |
| |
| While DEBUG() already includes the function name. |
| |
| Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
| Acked-by: Alex Williamson <alex.williamson@redhat.com> |
| Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> |
| |
| hw/i386/kvm/pci-assign.c | 12 ++++++------ |
| 1 file changed, 6 insertions(+), 6 deletions(-) |
| |
| Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com> |
| |
| hw/i386/kvm/pci-assign.c | 12 ++++++------ |
| 1 files changed, 6 insertions(+), 6 deletions(-) |
| |
| diff --git a/hw/i386/kvm/pci-assign.c b/hw/i386/kvm/pci-assign.c |
| index a5885b4..7060605 100644 |
| |
| |
| @@ -226,7 +226,7 @@ static uint32_t slow_bar_readb(void *opaque, hwaddr addr) |
| uint32_t r; |
| |
| r = *in; |
| - DEBUG("slow_bar_readl addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r); |
| + DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r); |
| |
| return r; |
| } |
| @@ -238,7 +238,7 @@ static uint32_t slow_bar_readw(void *opaque, hwaddr addr) |
| uint32_t r; |
| |
| r = *in; |
| - DEBUG("slow_bar_readl addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r); |
| + DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r); |
| |
| return r; |
| } |
| @@ -250,7 +250,7 @@ static uint32_t slow_bar_readl(void *opaque, hwaddr addr) |
| uint32_t r; |
| |
| r = *in; |
| - DEBUG("slow_bar_readl addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r); |
| + DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, r); |
| |
| return r; |
| } |
| @@ -260,7 +260,7 @@ static void slow_bar_writeb(void *opaque, hwaddr addr, uint32_t val) |
| AssignedDevRegion *d = opaque; |
| uint8_t *out = d->u.r_virtbase + addr; |
| |
| - DEBUG("slow_bar_writeb addr=0x" TARGET_FMT_plx " val=0x%02x\n", addr, val); |
| + DEBUG("addr=0x" TARGET_FMT_plx " val=0x%02x\n", addr, val); |
| *out = val; |
| } |
| |
| @@ -269,7 +269,7 @@ static void slow_bar_writew(void *opaque, hwaddr addr, uint32_t val) |
| AssignedDevRegion *d = opaque; |
| uint16_t *out = (uint16_t *)(d->u.r_virtbase + addr); |
| |
| - DEBUG("slow_bar_writew addr=0x" TARGET_FMT_plx " val=0x%04x\n", addr, val); |
| + DEBUG("addr=0x" TARGET_FMT_plx " val=0x%04x\n", addr, val); |
| *out = val; |
| } |
| |
| @@ -278,7 +278,7 @@ static void slow_bar_writel(void *opaque, hwaddr addr, uint32_t val) |
| AssignedDevRegion *d = opaque; |
| uint32_t *out = (uint32_t *)(d->u.r_virtbase + addr); |
| |
| - DEBUG("slow_bar_writel addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, val); |
| + DEBUG("addr=0x" TARGET_FMT_plx " val=0x%08x\n", addr, val); |
| *out = val; |
| } |
| |
| -- |
| 1.7.1 |
| |