qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/9] Tracing patches
@ 2014-05-07 17:16 Stefan Hajnoczi
  2014-05-07 17:16 ` [Qemu-devel] [PULL 1/9] trace: [tracetool] Add method 'Event.api' to build event names Stefan Hajnoczi
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Stefan Hajnoczi @ 2014-05-07 17:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

I forgot to open the QEMU 2.1 tracing queue.  Let's get started!

The following changes since commit 9898370497da3f18e0c9555b65c858eabc78ab50:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-smbios-2' into staging (2014-05-06 12:23:05 +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 e00e36fb913217d49f57cc19d8d605270dd82bc5:

  configure: Show trace output file conditionally (2014-05-07 19:07:18 +0200)

----------------------------------------------------------------
Tracing pull request

----------------------------------------------------------------
Lluís Vilanova (8):
      trace: [tracetool] Add method 'Event.api' to build event names
      trace: [tracetool] Add methods 'Event.copy' and 'Arguments.copy'
      trace: [tracetool] Spacing changes
      trace: [tracetool] Cosmetic changes
      trace: [tracetool] Show list of frontends and backends sorted by name
      trace: [tracetool] Change format docs to point to the generated file
      trace: [simple] Bump up log version number
      trace: [tracetool] Minimize the amount of per-backend code

Stefan Weil (1):
      configure: Show trace output file conditionally

 configure                                |   2 +
 scripts/simpletrace.py                   |  16 ++--
 scripts/tracetool/__init__.py            |  53 +++++++------
 scripts/tracetool/backend/__init__.py    |  74 ++++++++---------
 scripts/tracetool/backend/dtrace.py      |  81 +++----------------
 scripts/tracetool/backend/events.py      |  23 ------
 scripts/tracetool/backend/ftrace.py      |  56 ++++++-------
 scripts/tracetool/backend/simple.py      | 132 +++++++++++++++----------------
 scripts/tracetool/backend/stderr.py      |  43 ++++------
 scripts/tracetool/backend/ust.py         |  65 +++------------
 scripts/tracetool/format/__init__.py     |  50 ++++--------
 scripts/tracetool/format/c.py            |  16 +++-
 scripts/tracetool/format/d.py            |  30 ++++++-
 scripts/tracetool/format/events_c.py     |  15 ++--
 scripts/tracetool/format/events_h.py     |  15 ++--
 scripts/tracetool/format/h.py            |  30 ++++---
 scripts/tracetool/format/stap.py         |  42 +++++++++-
 scripts/tracetool/format/ust_events_c.py |   7 +-
 scripts/tracetool/format/ust_events_h.py |  42 +++++++++-
 trace/Makefile.objs                      |   4 +-
 trace/simple.c                           |   2 +-
 21 files changed, 364 insertions(+), 434 deletions(-)
 delete mode 100644 scripts/tracetool/backend/events.py

-- 
1.9.0

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [Qemu-devel] [PULL 0/5] Tracing patches
@ 2014-06-09 13:45 Stefan Hajnoczi
  2014-06-09 13:45 ` [Qemu-devel] [PULL 9/9] configure: Show trace output file conditionally Stefan Hajnoczi
  0 siblings, 1 reply; 12+ messages in thread
From: Stefan Hajnoczi @ 2014-06-09 13:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 959e41473f2179850578482052fb73b913bc4e42:

  slirp/arp: do not special-case bogus IP addresses (2014-06-09 01:49:28 +0200)

are available in the git repository at:

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

for you to fetch changes up to a35d9be622a85d9ad6be5448e78c8a3f95ee5f00:

  trace: Replace fprintf with error_report and print location (2014-06-09 15:43:40 +0200)

----------------------------------------------------------------
Tracing pull request

----------------------------------------------------------------
Alexey Kardashevskiy (2):
      trace: Replace error with warning if event is not defined
      trace: Replace fprintf with error_report and print location

Lluís Vilanova (1):
      trace: Multi-backend tracing

Stefan Hajnoczi (2):
      trace: add pid field to simpletrace record
      simpletrace: add support for trace record pid field

 .travis.yml                           |  8 ++--
 Makefile                              |  4 +-
 Makefile.target                       |  4 +-
 configure                             | 47 ++++++++++---------
 docs/tracing.txt                      |  4 +-
 qemu-io.c                             |  2 +-
 scripts/simpletrace.py                | 26 ++++++-----
 scripts/tracetool.py                  | 43 +++++++++---------
 scripts/tracetool/__init__.py         | 24 +++++-----
 scripts/tracetool/backend/__init__.py | 15 +++---
 trace/Makefile.objs                   | 32 ++++++-------
 trace/control-internal.h              |  4 +-
 trace/control.c                       | 86 +++++++++++++++++++++++++++--------
 trace/control.h                       | 27 ++---------
 trace/default.c                       | 40 ----------------
 trace/ftrace.c                        | 25 +---------
 trace/ftrace.h                        |  5 ++
 trace/simple.c                        | 27 +++--------
 trace/simple.h                        |  1 +
 trace/stderr.c                        | 30 ------------
 vl.c                                  |  4 +-
 21 files changed, 195 insertions(+), 263 deletions(-)
 delete mode 100644 trace/default.c
 delete mode 100644 trace/stderr.c

-- 
1.9.3

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

end of thread, other threads:[~2014-06-09 13:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-07 17:16 [Qemu-devel] [PULL 0/9] Tracing patches Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 1/9] trace: [tracetool] Add method 'Event.api' to build event names Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 2/9] trace: [tracetool] Add methods 'Event.copy' and 'Arguments.copy' Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 3/9] trace: [tracetool] Spacing changes Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 4/9] trace: [tracetool] Cosmetic changes Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 5/9] trace: [tracetool] Show list of frontends and backends sorted by name Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 6/9] trace: [tracetool] Change format docs to point to the generated file Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 7/9] trace: [simple] Bump up log version number Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 8/9] trace: [tracetool] Minimize the amount of per-backend code Stefan Hajnoczi
2014-05-07 17:16 ` [Qemu-devel] [PULL 9/9] configure: Show trace output file conditionally Stefan Hajnoczi
2014-05-09 11:28 ` [Qemu-devel] [PULL 0/9] Tracing patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2014-06-09 13:45 [Qemu-devel] [PULL 0/5] " Stefan Hajnoczi
2014-06-09 13:45 ` [Qemu-devel] [PULL 9/9] configure: Show trace output file conditionally 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).