qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@gmail.com>
To: Lluís <xscript@gmx.net>
Cc: qemu-devel@nongnu.org, chouteau@adacore.com
Subject: Re: [Qemu-devel] [PATCH v5 00/10] trace-state: make the behaviour of "disable" consistent across all backends
Date: Fri, 15 Jul 2011 10:47:09 +0100	[thread overview]
Message-ID: <20110715094709.GE6856@stefanha-thinkpad.localdomain> (raw)
In-Reply-To: <20110628165254.23482.17825.stgit@ginnungagap.bsc.es>

On Tue, Jun 28, 2011 at 06:52:55PM +0200, Lluís wrote:
> This patch defines the "disable" trace event state to always use the "nop"
> backend.
> 
> As a side-effect, all events are now enabled (without "disable") by default, as
> all backends (except "stderr") have programmatic support for dynamically
> (de)activating each trace event.
> 
> In order to make this true, the "simple" backend now has a "-trace
> events=<file>" argument to let the user select which events must be enabled from
> the very beginning.
> 
> NOTES:
> * Parsing of -trace arguments is not done in the OS-specific frontends.
> 
> Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
> ---
> 
> Changes in v5:
> 
> * Fix a variable name typo in configure.
> * Rebase on qemu.git/master (c24a9c6ef946ec1b5b280061d4f7b579aaac6707).
> 
> Changes in v4:
> 
> * Fix a couple of minor errors.
> 
> Changes in v3:
> 
> * Rebase on qemu.git/master (642cfd4d31241c0fc65c520cb1e703659af66236).
> * Remove already-merged patches.
> * Remove code styling patches.
> * Generalize programmatic interface for trace event state control.
> 
> Changes in v2:
> 
> * Documentation fixes.
> * Seggregate whitespace/indentation changes.
> * Minor code beautifications.
> * Make all -trace suboptions explicit.
> * Fix minor comments from Stefan.
> * Minor trace-events format fixes.
> * Integrate changes from Fabien.
> * Rebase on qemu.git/master (c8f930c0eeb696d638f4d4bf654e955fa44ff40f).
> 
> Lluís Vilanova (10):
>       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-state: separate trace event control and query routines from the simple backend
>       trace-state: always compile support for controlling and querying trace event states
>       trace-state: add "-trace events" argument to control initial state
>       trace-state: always use the "nop" backend on events with the "disable" keyword
>       trace-state: [simple] disable all trace points by default
>       trace-state: [stderr] add support for dynamically enabling/disabling events
>       trace: enable all events
> 
> 
>  .gitignore        |    2 
>  Makefile          |    1 
>  Makefile.objs     |    5 
>  configure         |    7 +
>  docs/tracing.txt  |   64 +++---
>  hmp-commands.hx   |    9 +
>  monitor.c         |   19 +-
>  qemu-config.c     |    7 -
>  qemu-options.hx   |   26 ++
>  scripts/tracetool |  116 +++++------
>  simpletrace.c     |  355 ---------------------------------
>  simpletrace.h     |   48 ----
>  trace-events      |  569 ++++++++++++++++++++++++++---------------------------
>  trace/control.c   |   66 ++++++
>  trace/control.h   |   16 +
>  trace/simple.c    |  332 +++++++++++++++++++++++++++++++
>  trace/simple.h    |   46 ++++
>  trace/stderr.h    |   11 +
>  vl.c              |   21 +-
>  19 files changed, 914 insertions(+), 806 deletions(-)
>  delete mode 100644 simpletrace.c
>  delete mode 100644 simpletrace.h
>  create mode 100644 trace/control.c
>  create mode 100644 trace/control.h
>  create mode 100644 trace/simple.c
>  create mode 100644 trace/simple.h
>  create mode 100644 trace/stderr.h

Nice!  Now both stderr and simple are unified in terms of user
interface.  -trace events=<file> can be used to set the enabled trace
events on startup.

I did leave some comments, mainly #ifdef reduction.  But let's merge the
next version.

Stefan

  parent reply	other threads:[~2011-07-15  9:47 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-28 16:52 [Qemu-devel] [PATCH v5 00/10] trace-state: make the behaviour of "disable" consistent across all backends Lluís
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 01/10] trace: move backend-specific code into the trace/ directory Lluís
2011-07-15  9:40   ` Stefan Hajnoczi
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 02/10] trace: avoid conditional code compilation during option parsing Lluís
2011-07-15  9:41   ` Stefan Hajnoczi
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 03/10] trace: generalize the "property" concept in the trace-events file Lluís
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 04/10] trace-state: separate trace event control and query routines from the simple backend Lluís
2011-07-15  9:41   ` Stefan Hajnoczi
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 05/10] trace-state: always compile support for controlling and querying trace event states Lluís
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 06/10] trace-state: add "-trace events" argument to control initial state Lluís
2011-07-15  9:40   ` Stefan Hajnoczi
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 07/10] trace-state: always use the "nop" backend on events with the "disable" keyword Lluís
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 08/10] trace-state: [simple] disable all trace points by default Lluís
2011-06-28 16:53 ` [Qemu-devel] [PATCH v5 09/10] trace-state: [stderr] add support for dynamically enabling/disabling events Lluís
2011-06-28 16:54 ` [Qemu-devel] [PATCH v5 10/10] trace: enable all events Lluís
2011-07-12 18:04 ` [Qemu-devel] [PATCH v5 00/10] trace-state: make the behaviour of "disable" consistent across all backends Stefan Hajnoczi
2011-07-15  9:47 ` Stefan Hajnoczi [this message]
2011-07-20 19:19   ` Lluís

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=20110715094709.GE6856@stefanha-thinkpad.localdomain \
    --to=stefanha@gmail.com \
    --cc=chouteau@adacore.com \
    --cc=qemu-devel@nongnu.org \
    --cc=xscript@gmx.net \
    /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).