[Qemu-devel] [PATCH 00/11] hw: various conversions to trace-events

Philippe Mathieu-Daudé posted 11 patches 5 years, 10 months ago
Only 10 patches received!
hw/block/fdc.c                   |  6 ++---
hw/block/pflash_cfi01.c          | 42 ++++++++++++--------------------
hw/block/pflash_cfi02.c          | 18 +++++++-------
hw/char/parallel.c               | 16 +++++++++---
hw/char/serial.c                 |  5 ++--
hw/display/cirrus_vga.c          | 25 +++++--------------
hw/input/tsc2005.c               |  7 +++---
hw/net/etraxfs_eth.c             |  8 +++---
hw/net/ne2000.c                  | 25 ++++++++++---------
hw/block/trace-events            | 17 +++++++++++++
hw/char/trace-events             |  8 ++++++
hw/display/trace-events          |  2 ++
hw/input/trace-events            |  3 +++
hw/net/trace-events              | 11 +++++++++
hw/sd/trace-events               |  2 +-
scripts/tracetool/backend/log.py |  2 +-
16 files changed, 113 insertions(+), 84 deletions(-)
[Qemu-devel] [PATCH 00/11] hw: various conversions to trace-events
Posted by Philippe Mathieu-Daudé 5 years, 10 months ago
Hi,

This series is a collection of various trivial patches from
different stagnating branches. Time to share before loosing
them.

Only the first differs and is meant for Stefan, other will
probably go via the Trivial tree once Acked.

Regards,

Phil.

Philippe Mathieu-Daudé (11):
  trace: Fix format string for the struct timeval members casted to size_t
  sdcard: Reduce sdcard_set_blocklen() trace digits
  hw/char/serial: Convert from DPRINTF macro to trace events
  hw/char/parallel: Convert from pdebug() macro to trace events
  hw/display/cirrus: Convert printf() calls to trace events
  hw/input/tsc2005: Convert a fprintf() call to trace events
  hw/net/ne2000: Add trace events
  hw/net/ne2000: Convert printf() calls to trace events
  hw/net/etraxfs_eth: Convert printf() calls to trace events
  hw/block/fdc: Convert from FLOPPY_DPRINTF() macro to trace events
  hw/block/pflash_cfi: Convert from DPRINTF() macro to trace events

 hw/block/fdc.c                   |  6 ++---
 hw/block/pflash_cfi01.c          | 42 ++++++++++++--------------------
 hw/block/pflash_cfi02.c          | 18 +++++++-------
 hw/char/parallel.c               | 16 +++++++++---
 hw/char/serial.c                 |  5 ++--
 hw/display/cirrus_vga.c          | 25 +++++--------------
 hw/input/tsc2005.c               |  7 +++---
 hw/net/etraxfs_eth.c             |  8 +++---
 hw/net/ne2000.c                  | 25 ++++++++++---------
 hw/block/trace-events            | 17 +++++++++++++
 hw/char/trace-events             |  8 ++++++
 hw/display/trace-events          |  2 ++
 hw/input/trace-events            |  3 +++
 hw/net/trace-events              | 11 +++++++++
 hw/sd/trace-events               |  2 +-
 scripts/tracetool/backend/log.py |  2 +-
 16 files changed, 113 insertions(+), 84 deletions(-)

-- 
2.18.0.rc2


Re: [Qemu-devel] [PATCH 00/11] hw: various conversions to trace-events
Posted by Stefan Hajnoczi 5 years, 10 months ago
On Thu, Jun 21, 2018 at 02:12:46PM -0300, Philippe Mathieu-Daudé wrote:
> Hi,
> 
> This series is a collection of various trivial patches from
> different stagnating branches. Time to share before loosing
> them.
> 
> Only the first differs and is meant for Stefan, other will
> probably go via the Trivial tree once Acked.
> 
> Regards,
> 
> Phil.
> 
> Philippe Mathieu-Daudé (11):
>   trace: Fix format string for the struct timeval members casted to size_t
>   sdcard: Reduce sdcard_set_blocklen() trace digits
>   hw/char/serial: Convert from DPRINTF macro to trace events
>   hw/char/parallel: Convert from pdebug() macro to trace events
>   hw/display/cirrus: Convert printf() calls to trace events
>   hw/input/tsc2005: Convert a fprintf() call to trace events
>   hw/net/ne2000: Add trace events
>   hw/net/ne2000: Convert printf() calls to trace events
>   hw/net/etraxfs_eth: Convert printf() calls to trace events
>   hw/block/fdc: Convert from FLOPPY_DPRINTF() macro to trace events
>   hw/block/pflash_cfi: Convert from DPRINTF() macro to trace events
> 
>  hw/block/fdc.c                   |  6 ++---
>  hw/block/pflash_cfi01.c          | 42 ++++++++++++--------------------
>  hw/block/pflash_cfi02.c          | 18 +++++++-------
>  hw/char/parallel.c               | 16 +++++++++---
>  hw/char/serial.c                 |  5 ++--
>  hw/display/cirrus_vga.c          | 25 +++++--------------
>  hw/input/tsc2005.c               |  7 +++---
>  hw/net/etraxfs_eth.c             |  8 +++---
>  hw/net/ne2000.c                  | 25 ++++++++++---------
>  hw/block/trace-events            | 17 +++++++++++++
>  hw/char/trace-events             |  8 ++++++
>  hw/display/trace-events          |  2 ++
>  hw/input/trace-events            |  3 +++
>  hw/net/trace-events              | 11 +++++++++
>  hw/sd/trace-events               |  2 +-
>  scripts/tracetool/backend/log.py |  2 +-
>  16 files changed, 113 insertions(+), 84 deletions(-)
> 
> -- 
> 2.18.0.rc2
> 
> 

Thanks, applied to my tracing-next tree:
https://github.com/stefanha/qemu/commits/tracing-next

Stefan