qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/15] Tracing patches
@ 2011-09-01  8:06 Stefan Hajnoczi
  2011-09-01  8:06 ` [Qemu-devel] [PATCH 01/15] build: Fix linkage of QEMU_PROG Stefan Hajnoczi
                   ` (15 more replies)
  0 siblings, 16 replies; 23+ messages in thread
From: Stefan Hajnoczi @ 2011-09-01  8:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony Liguori, Stefan Hajnoczi

The following changes since commit f0fb8b7180fdcf536ea635a0720e1496110ecb3b:

  Merge branch 'omap-for-upstream' of git://git.linaro.org/people/pmaydell/qemu-arm into pm (2011-08-29 23:59:06 +0200)

are available in the git repository at:

  ssh://repo.or.cz/srv/git/qemu/stefanha.git tracing

Lluís (14):
      build: Fix linkage of QEMU_PROG
      build: [simple] Include qemu-timer-common.o in trace-obj-y
      trace: [configure] rename CONFIG_*_TRACE into CONFIG_TRACE_*
      trace: [make] replace 'ifeq' with values in CONFIG_TRACE_*
      trace: move backend-specific code into the trace/ directory
      trace: avoid conditional code compilation during option parsing
      trace: generalize the "property" concept in the trace-events file
      trace: separate trace event control and query routines from the simple backend
      trace: always compile support for controlling and querying trace event states
      trace: add "-trace events" argument to control initial state
      trace: always use the "nop" backend on events with the "disable" keyword
      trace: [simple] disable all trace points by default
      trace: [stderr] add support for dynamically enabling/disabling events
      trace: enable all events

Stefan Hajnoczi (1):
      simpletrace: fix process() argument count

 Makefile                        |    1 +
 Makefile.objs                   |   22 +-
 Makefile.target                 |    8 +-
 configure                       |   27 ++-
 docs/tracing.txt                |   73 +++--
 hmp-commands.hx                 |   11 +-
 monitor.c                       |   26 +-
 qemu-config.c                   |    7 +-
 qemu-options.hx                 |   27 ++-
 scripts/simpletrace.py          |    4 +-
 scripts/tracetool               |  116 ++++----
 tests/test_path.c               |    2 +-
 trace-events                    |  651 +++++++++++++++++++--------------------
 trace/control.c                 |   42 +++
 trace/control.h                 |   41 +++
 trace/default.c                 |   41 +++
 simpletrace.c => trace/simple.c |   27 +-
 simpletrace.h => trace/simple.h |   16 +-
 trace/stderr.c                  |   37 +++
 trace/stderr.h                  |   11 +
 vl.c                            |   19 +-
 21 files changed, 719 insertions(+), 490 deletions(-)
 create mode 100644 trace/control.c
 create mode 100644 trace/control.h
 create mode 100644 trace/default.c
 rename simpletrace.c => trace/simple.c (94%)
 rename simpletrace.h => trace/simple.h (75%)
 create mode 100644 trace/stderr.c
 create mode 100644 trace/stderr.h

^ permalink raw reply	[flat|nested] 23+ messages in thread
* [Qemu-devel] [PULL 00/15] Tracing patches
@ 2015-11-10 13:31 Stefan Hajnoczi
  2015-11-10 13:36 ` Peter Maydell
  0 siblings, 1 reply; 23+ messages in thread
From: Stefan Hajnoczi @ 2015-11-10 13:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit a8b4f9585a0bf5186fca793ce2c5d754cd8ec49a:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2015-11-10' into staging (2015-11-10 09:39:24 +0000)

are available in the git repository at:

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

for you to fetch changes up to bd0e34e715bcc784fe732945d011cb36645d7f12:

  log: add "-d trace:PATTERN" (2015-11-10 13:23:09 +0000)

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

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

Denis V. Lunev (2):
  trace: no need to call trace_backend_init in different branches now
  log: move qemu-log.c into util/ directory

Paolo Bonzini (11):
  trace: count number of enabled events
  trace: track enabled events in a separate array
  trace: fix documentation
  trace: split trace_init_events out of trace_init_backends
  trace: split trace_init_file out of trace_init_backends
  trace: add "-trace enable=..."
  trace: add "-trace help"
  log: do not unnecessarily include qom/cpu.h
  trace: convert stderr backend to log
  trace: switch default backend to "log"
  log: add "-d trace:PATTERN"

Stefan Hajnoczi (2):
  trace: fix make foo-timestamp rules
  trace: add make dependencies on tracetool source

 Makefile.objs                        |   1 -
 bsd-user/main.c                      |   1 +
 configure                            |   6 +-
 cpu-exec.c                           |   1 +
 exec.c                               |   1 +
 hw/acpi/cpu_hotplug.c                |   1 +
 hw/timer/a9gtimer.c                  |   1 +
 include/exec/log.h                   |  60 +++++++++++
 include/qemu/log.h                   |  60 +----------
 linux-user/main.c                    |   1 +
 qemu-io.c                            |   2 +-
 qemu-log.c                           | 177 --------------------------------
 qemu-options.hx                      |  22 ++--
 qom/cpu.c                            |   1 +
 scripts/tracetool/backend/stderr.py  |  47 ---------
 scripts/tracetool/format/events_c.py |   2 +-
 target-alpha/translate.c             |   1 +
 target-arm/translate.c               |   1 +
 target-cris/translate.c              |   1 +
 target-i386/seg_helper.c             |   1 +
 target-i386/smm_helper.c             |   1 +
 target-i386/translate.c              |   1 +
 target-lm32/helper.c                 |   1 +
 target-lm32/translate.c              |   1 +
 target-m68k/translate.c              |   1 +
 target-microblaze/helper.c           |   1 +
 target-microblaze/translate.c        |   1 +
 target-mips/helper.c                 |   1 +
 target-mips/translate.c              |   1 +
 target-moxie/translate.c             |   1 +
 target-openrisc/translate.c          |   1 +
 target-ppc/mmu-hash32.c              |   1 +
 target-ppc/mmu-hash64.c              |   1 +
 target-ppc/mmu_helper.c              |   1 +
 target-ppc/translate.c               |   1 +
 target-s390x/translate.c             |   1 +
 target-sh4/helper.c                  |   1 +
 target-sh4/translate.c               |   1 +
 target-sparc/int32_helper.c          |   1 +
 target-sparc/int64_helper.c          |   1 +
 target-sparc/translate.c             |   1 +
 target-tilegx/translate.c            |   1 +
 target-tricore/translate.c           |   1 +
 target-unicore32/translate.c         |   1 +
 target-xtensa/translate.c            |   1 +
 tcg/tcg.c                            |   1 +
 trace/Makefile.objs                  |  48 +++++----
 trace/control-internal.h             |  15 ++-
 trace/control.c                      |  98 +++++++++++++-----
 trace/control.h                      |  44 +++++++-
 trace/event-internal.h               |   2 -
 trace/simple.c                       |   6 +-
 trace/simple.h                       |   4 +-
 translate-all.c                      |   1 +
 util/Makefile.objs                   |   1 +
 util/log.c                           | 190 +++++++++++++++++++++++++++++++++++
 vl.c                                 |  38 ++++---
 57 files changed, 488 insertions(+), 373 deletions(-)
 create mode 100644 include/exec/log.h
 delete mode 100644 qemu-log.c
 delete mode 100644 scripts/tracetool/backend/stderr.py
 create mode 100644 util/log.c

-- 
2.5.0

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

end of thread, other threads:[~2015-11-10 13:36 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-01  8:06 [Qemu-devel] [PULL 00/15] Tracing patches Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 01/15] build: Fix linkage of QEMU_PROG Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 02/15] build: [simple] Include qemu-timer-common.o in trace-obj-y Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 03/15] trace: [configure] rename CONFIG_*_TRACE into CONFIG_TRACE_* Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 04/15] trace: [make] replace 'ifeq' with values in CONFIG_TRACE_* Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 05/15] trace: move backend-specific code into the trace/ directory Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 06/15] trace: avoid conditional code compilation during option parsing Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 07/15] trace: generalize the "property" concept in the trace-events file Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 08/15] trace: separate trace event control and query routines from the simple backend Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 09/15] trace: always compile support for controlling and querying trace event states Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 10/15] trace: add "-trace events" argument to control initial state Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 11/15] trace: always use the "nop" backend on events with the "disable" keyword Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 12/15] trace: [simple] disable all trace points by default Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 13/15] trace: [stderr] add support for dynamically enabling/disabling events Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 14/15] trace: enable all events Stefan Hajnoczi
2011-09-01  8:06 ` [Qemu-devel] [PATCH 15/15] simpletrace: fix process() argument count Stefan Hajnoczi
2011-09-01 19:08 ` [Qemu-devel] [PULL 00/15] Tracing patches Anthony Liguori
2011-09-02  9:39   ` Stefan Hajnoczi
2011-09-02 14:54     ` Anthony Liguori
2011-09-02 15:00       ` Anthony Liguori
2011-09-02 15:30       ` Lluís Vilanova
  -- strict thread matches above, loose matches on Subject: below --
2015-11-10 13:31 Stefan Hajnoczi
2015-11-10 13:36 ` 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).