qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/8] Tracing patches
@ 2016-09-28 21:31 Stefan Hajnoczi
  2016-09-28 21:31 ` [Qemu-devel] [PULL 1/8] trace: move util/buffer.c trace points into correct file Stefan Hajnoczi
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Stefan Hajnoczi @ 2016-09-28 21:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 25930ed60aad49f1fdd7de05272317c86ce1275b:

  Merge remote-tracking branch 'remotes/ehabkost/tags/x86-pull-request' into staging (2016-09-27 23:10:12 +0100)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/tracing-pull-request

for you to fetch changes up to 43e21e4907a009d87f6aef44663d9e1f7b181b8d:

  trace: Document the execution mode of guest events (2016-09-28 19:17:55 +0100)

----------------------------------------------------------------

----------------------------------------------------------------

Daniel P. Berrange (4):
  trace: move util/buffer.c trace points into correct file
  trace: move util/qemu-coroutine*.c trace points into correct file
  trace: move hw/mem/pc-dimm.c trace points into correct file
  trace: move hw/virtio/virtio-balloon.c trace points into correct file

Lluís Vilanova (4):
  trace: Properly initialize dynamic event states in hot-plugged vCPUs
  trace: Add event "guest_cpu_enter"
  trace: Add event "guest_cpu_reset"
  trace: Document the execution mode of guest events

 Makefile.objs          |  1 +
 bsd-user/main.c        |  1 -
 hw/i386/trace-events   |  4 ----
 hw/mem/trace-events    |  5 +++++
 hw/virtio/trace-events |  5 +++++
 io/trace-events        |  6 ------
 linux-user/main.c      |  1 -
 qom/cpu.c              |  6 ++++++
 stubs/trace-control.c  |  6 ++++++
 trace-events           | 33 ++++++++++++++++-----------------
 trace/control-target.c | 40 ++++++++++++++++++++++++++++++++++++++++
 trace/control.c        | 19 -------------------
 trace/control.h        | 19 ++++++++-----------
 util/trace-events      | 19 +++++++++++++++++++
 vl.c                   |  1 -
 15 files changed, 106 insertions(+), 60 deletions(-)
 create mode 100644 hw/mem/trace-events

-- 
2.7.4

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [Qemu-devel] [PULL 0/8] Tracing patches
@ 2016-06-28 21:27 Stefan Hajnoczi
  2016-06-29 15:08 ` Peter Maydell
  0 siblings, 1 reply; 12+ messages in thread
From: Stefan Hajnoczi @ 2016-06-28 21:27 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit d7f30403576f04f1f3a5fb5a1d18cba8dfa7a6d2:

  cputlb: don't cpu_abort() if guest tries to execute outside RAM or RAM (2016-06-28 18:50:53 +0100)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/tracing-pull-request

for you to fetch changes up to 9c15e70086f3343bd810c6150d92ebfd6f346fcf:

  trace: [*-user] Add events to trace guest syscalls in syscall emulation mode (2016-06-28 21:14:12 +0100)

----------------------------------------------------------------

----------------------------------------------------------------

Denis V. Lunev (7):
  doc: sync help description for --trace with man for qemu.1
  doc: move text describing --trace to specific .texi file
  trace: move qemu_trace_opts to trace/control.c
  trace: enable tracing in qemu-io
  trace: enable tracing in qemu-nbd
  qemu-img: move common options parsing before commands processing
  trace: enable tracing in qemu-img

Lluís Vilanova (1):
  trace: [*-user] Add events to trace guest syscalls in syscall
    emulation mode

 Makefile               |  7 +++---
 bsd-user/syscall.c     |  9 ++++++++
 linux-user/syscall.c   |  2 ++
 qemu-img.c             | 58 ++++++++++++++++++++++++++++++++++++++------------
 qemu-img.texi          | 13 ++++++++++-
 qemu-io.c              | 18 ++++++++++++----
 qemu-nbd.c             | 19 ++++++++++++++++-
 qemu-nbd.texi          |  3 +++
 qemu-option-trace.texi | 25 ++++++++++++++++++++++
 qemu-options.hx        | 29 ++-----------------------
 trace-events           | 16 ++++++++++++++
 trace/control.c        | 42 +++++++++++++++++++++++++++++++++++-
 trace/control.h        | 25 ++++++++++++----------
 vl.c                   | 38 ++-------------------------------
 14 files changed, 206 insertions(+), 98 deletions(-)
 create mode 100644 qemu-option-trace.texi

-- 
2.7.4

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

end of thread, other threads:[~2016-09-29 18:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-28 21:31 [Qemu-devel] [PULL 0/8] Tracing patches Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 1/8] trace: move util/buffer.c trace points into correct file Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 2/8] trace: move util/qemu-coroutine*.c " Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 3/8] trace: move hw/mem/pc-dimm.c " Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 4/8] trace: move hw/virtio/virtio-balloon.c " Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 5/8] trace: Properly initialize dynamic event states in hot-plugged vCPUs Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 6/8] trace: Add event "guest_cpu_enter" Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 7/8] trace: Add event "guest_cpu_reset" Stefan Hajnoczi
2016-09-28 21:31 ` [Qemu-devel] [PULL 8/8] trace: Document the execution mode of guest events Stefan Hajnoczi
2016-09-29 18:47 ` [Qemu-devel] [PULL 0/8] Tracing patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2016-06-28 21:27 Stefan Hajnoczi
2016-06-29 15:08 ` Peter Maydell

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).