[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [PULL v2 05/43] hw/timer/sun4v-rtc: Convert from DPRINTF(
From: |
Eduardo Habkost |
Subject: |
Re: [Qemu-ppc] [PULL v2 05/43] hw/timer/sun4v-rtc: Convert from DPRINTF() macro to trace events |
Date: |
Fri, 26 Oct 2018 05:27:41 -0300 |
User-agent: |
Mutt/1.9.2 (2017-12-15) |
On Thu, Oct 25, 2018 at 06:17:59PM +0100, David Gibson wrote:
> On Thu, Oct 25, 2018 at 10:32:23AM -0300, Eduardo Habkost wrote:
> > From: Philippe Mathieu-Daudé <address@hidden>
> >
> > Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
> > Reviewed-by: Artyom Tarasenko <address@hidden>
> > Reviewed-by: Cédric Le Goater <address@hidden>
> > Message-Id: <address@hidden>
> > Signed-off-by: Eduardo Habkost <address@hidden>
> > ---
> > hw/timer/sun4v-rtc.c | 13 +++----------
> > hw/timer/trace-events | 4 ++++
> > 2 files changed, 7 insertions(+), 10 deletions(-)
> >
> > diff --git a/hw/timer/sun4v-rtc.c b/hw/timer/sun4v-rtc.c
> > index 310523225f..13be94f8da 100644
> > --- a/hw/timer/sun4v-rtc.c
> > +++ b/hw/timer/sun4v-rtc.c
> > @@ -14,15 +14,8 @@
> > #include "hw/sysbus.h"
> > #include "qemu/timer.h"
> > #include "hw/timer/sun4v-rtc.h"
> > +#include "trace.h"
> >
> > -//#define DEBUG_SUN4V_RTC
> > -
> > -#ifdef DEBUG_SUN4V_RTC
> > -#define DPRINTF(fmt, ...) \
> > - do { printf("sun4v_rtc: " fmt , ## __VA_ARGS__); } while (0)
> > -#else
> > -#define DPRINTF(fmt, ...) do {} while (0)
> > -#endif
> >
> > #define TYPE_SUN4V_RTC "sun4v_rtc"
> > #define SUN4V_RTC(obj) OBJECT_CHECK(Sun4vRtc, (obj), TYPE_SUN4V_RTC)
> > @@ -41,14 +34,14 @@ static uint64_t sun4v_rtc_read(void *opaque, hwaddr
> > addr,
> > /* accessing the high 32 bits */
> > val >>= 32;
> > }
> > - DPRINTF("read from " TARGET_FMT_plx " val %lx\n", addr, val);
> > + trace_sun4v_rtc_read(addr, val);
> > return val;
> > }
> >
> > static void sun4v_rtc_write(void *opaque, hwaddr addr,
> > uint64_t val, unsigned size)
> > {
> > - DPRINTF("write 0x%x to " TARGET_FMT_plx "\n", (unsigned)val, addr);
> > + trace_sun4v_rtc_read(addr, val);
>
> Uh.. as in v1, it looks like this should be trace_sun4v_rtc_write().
Oops, my bad. I can fix this manually in case there's a v3 pull
request, but I would really prefer that to be included in a
follow up patch instead of making this block the entire pull
request.
--
Eduardo
- [Qemu-ppc] [PULL v2 00/43] Machine queue, 2018-10-25, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 06/43] hw/timer/sun4v-rtc: Use DeviceState::realize rather than SysBusDevice::init, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 04/43] trace-events: Fix copy/paste typo, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 03/43] vl:c: make sure that sockets are calculated correctly in '-smp X' case, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 02/43] vl.c deprecate incorrect CPUs topology, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 01/43] hostmem-file: fixed the memory leak while get pmem path., Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 20/43] pc-dimm: pass PCDIMMDevice to pc_dimm_.*plug, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 17/43] memory-device: fix alignment error message, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 13/43] hw/alpha/typhoon: Remove unuseful code, Eduardo Habkost, 2018/10/25
- [Qemu-ppc] [PULL v2 10/43] hw/mips/gt64xxx_pci: Convert gt64120_reset() function into Device reset method, Eduardo Habkost, 2018/10/25