qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <aliguori@us.ibm.com>
To: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PULL 00/15] Tracing patches
Date: Thu, 01 Sep 2011 14:08:49 -0500	[thread overview]
Message-ID: <4E5FD841.1010806@us.ibm.com> (raw)
In-Reply-To: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com>

On 09/01/2011 03:06 AM, Stefan Hajnoczi wrote:
> 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

Pulled.  Thanks.

Regards,

Anthony Liguori

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

  parent reply	other threads:[~2011-09-01 19:09 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Anthony Liguori [this message]
2011-09-02  9:39   ` [Qemu-devel] [PULL 00/15] Tracing patches 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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E5FD841.1010806@us.ibm.com \
    --to=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@linux.vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).