qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 00/13] [RfC] fix tracing for modules
@ 2021-06-01 13:24 Gerd Hoffmann
  2021-06-01 13:24 ` [PATCH v4 01/13] qemu-trace-stap: changing SYSTEMTAP_TAPSET considered harmful Gerd Hoffmann
                   ` (13 more replies)
  0 siblings, 14 replies; 24+ messages in thread
From: Gerd Hoffmann @ 2021-06-01 13:24 UTC (permalink / raw)
  To: qemu-devel
  Cc: Markus Armbruster, Michael S. Tsirkin, Dr. David Alan Gilbert,
	Stefan Hajnoczi, Gerd Hoffmann

First version that actually works.  Only qxl covered for this RfC,
other modules will follow once the basics are hashed out.

v4:
 - rebase to latest master.
 - fix systemtap tracing.
 - also cover virtio-gpu modules.
 - pick up some review tags.
 - misc minor tweaks.

v3:
 - handle initialization of modular tracepoints.

TODO:
Enabling modular tracepoints via -trace cmd line doesn't work yet.
Guess we need to store the list somewhere for later re-processing.
Error handling is tricky, specifically the "tracepoint doesn't exist"
error.  Suggestions / ideas are welcome.

More context:
  https://bugzilla.redhat.com/show_bug.cgi?id=1898700
  https://bugzilla.redhat.com/show_bug.cgi?id=1869642

take care,
  Gerd

Gerd Hoffmann (13):
  qemu-trace-stap: changing SYSTEMTAP_TAPSET considered harmful.
  trace: iter init tweaks
  trace: add trace_event_iter_init_group
  trace/simple: pass iter to st_write_event_mapping
  trace/simple: add st_init_group
  meson: add trace_events_config[]
  meson: move up hw subdir (specifically before trace subdir)
  meson: add module_trace & module_trace_src
  trace/stap: build stap files for modules
  meson: move qxl trace events to separate file
  virtio-gpu: split trace points
  meson: move virtio trace events to separate file
  meson: move virtio-gl trace events to separate file

 hw/display/trace-qxl.h            |  1 +
 hw/display/trace-virtio-gl.h      |  1 +
 hw/display/trace-virtio.h         |  1 +
 trace/control.h                   | 30 ++++++++--
 trace/simple.h                    |  1 +
 hw/display/qxl-render.c           |  2 +-
 hw/display/qxl.c                  |  2 +-
 hw/display/virtio-gpu-base.c      |  2 +-
 hw/display/virtio-gpu-virgl.c     | 50 ++++++++--------
 hw/display/virtio-gpu.c           |  2 +-
 monitor/misc.c                    |  4 +-
 trace/control-target.c            |  2 +-
 trace/control.c                   | 39 ++++++++++---
 trace/qmp.c                       |  6 +-
 trace/simple.c                    | 22 +++++--
 hw/display/meson.build            | 12 ++++
 hw/display/trace-events           | 95 -------------------------------
 hw/display/trace-events-qxl       | 66 +++++++++++++++++++++
 hw/display/trace-events-virtio    | 16 ++++++
 hw/display/trace-events-virtio-gl | 18 ++++++
 meson.build                       | 43 +++++++++++++-
 scripts/qemu-trace-stap           | 14 ++---
 trace/meson.build                 | 36 +++++++++---
 23 files changed, 298 insertions(+), 167 deletions(-)
 create mode 100644 hw/display/trace-qxl.h
 create mode 100644 hw/display/trace-virtio-gl.h
 create mode 100644 hw/display/trace-virtio.h
 create mode 100644 hw/display/trace-events-qxl
 create mode 100644 hw/display/trace-events-virtio
 create mode 100644 hw/display/trace-events-virtio-gl

-- 
2.31.1




^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2021-06-10  8:00 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-01 13:24 [PATCH v4 00/13] [RfC] fix tracing for modules Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 01/13] qemu-trace-stap: changing SYSTEMTAP_TAPSET considered harmful Gerd Hoffmann
2021-06-09 12:39   ` Stefan Hajnoczi
2021-06-09 15:21   ` Daniel P. Berrangé
2021-06-01 13:24 ` [PATCH v4 02/13] trace: iter init tweaks Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 03/13] trace: add trace_event_iter_init_group Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 04/13] trace/simple: pass iter to st_write_event_mapping Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 05/13] trace/simple: add st_init_group Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 06/13] meson: add trace_events_config[] Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 07/13] meson: move up hw subdir (specifically before trace subdir) Gerd Hoffmann
2021-06-09 12:42   ` Stefan Hajnoczi
2021-06-01 13:24 ` [PATCH v4 08/13] meson: add module_trace & module_trace_src Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 09/13] trace/stap: build stap files for modules Gerd Hoffmann
2021-06-09 12:48   ` Stefan Hajnoczi
2021-06-01 13:24 ` [PATCH v4 10/13] meson: move qxl trace events to separate file Gerd Hoffmann
2021-06-01 13:24 ` [PATCH v4 11/13] virtio-gpu: split trace points Gerd Hoffmann
2021-06-09 12:49   ` Stefan Hajnoczi
2021-06-01 13:24 ` [PATCH v4 12/13] meson: move virtio trace events to separate file Gerd Hoffmann
2021-06-09 15:11   ` Stefan Hajnoczi
2021-06-01 13:24 ` [PATCH v4 13/13] meson: move virtio-gl " Gerd Hoffmann
2021-06-09 15:12   ` Stefan Hajnoczi
2021-06-09 15:14 ` [PATCH v4 00/13] [RfC] fix tracing for modules Stefan Hajnoczi
2021-06-10  6:32   ` Gerd Hoffmann
2021-06-10  7:58     ` Stefan Hajnoczi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).