From patchwork Tue Jun 28 16:53:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?Q?Llu=C3=ADs?= X-Patchwork-Id: 102423 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 36A16B6F5C for ; Wed, 29 Jun 2011 03:05:10 +1000 (EST) Received: from localhost ([::1]:48532 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qbbik-0005Uu-Ce for incoming@patchwork.ozlabs.org; Tue, 28 Jun 2011 13:05:06 -0400 Received: from eggs.gnu.org ([140.186.70.92]:54479) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbbXz-0003K0-Qa for qemu-devel@nongnu.org; Tue, 28 Jun 2011 12:54:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QbbXx-000423-Uc for qemu-devel@nongnu.org; Tue, 28 Jun 2011 12:53:59 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:42278) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QbbXx-00041q-7Q for qemu-devel@nongnu.org; Tue, 28 Jun 2011 12:53:57 -0400 Received: (qmail invoked by alias); 28 Jun 2011 16:53:55 -0000 Received: from unknown (EHLO localhost) [84.88.53.92] by mail.gmx.net (mp064) with SMTP; 28 Jun 2011 18:53:55 +0200 X-Authenticated: #12333383 X-Provags-ID: V01U2FsdGVkX19vqTEInudvLdnyXlzbjNdfmNRC7qa3DprNwTqzK+ F4klS+BDlXmkXm To: qemu-devel@nongnu.org From: =?utf-8?b?TGx1w61z?= Date: Tue, 28 Jun 2011 18:53:55 +0200 Message-ID: <20110628165355.23482.32230.stgit@ginnungagap.bsc.es> In-Reply-To: <20110628165254.23482.17825.stgit@ginnungagap.bsc.es> References: <20110628165254.23482.17825.stgit@ginnungagap.bsc.es> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Y-GMX-Trusted: 0 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 213.165.64.22 Cc: stefanha@gmail.com, chouteau@adacore.com Subject: [Qemu-devel] [PATCH v5 09/10] trace-state: [stderr] add support for dynamically enabling/disabling events X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Uses the generic interface provided in "trace/control.h" in order to provide a programmatic interface as well as command line and monitor controls. Signed-off-by: Fabien Chouteau Signed-off-by: LluĂ­s Vilanova --- configure | 3 +++ docs/tracing.txt | 5 ----- scripts/tracetool | 33 ++++++++++++++++++++++++++++----- trace/control.c | 4 ++-- trace/stderr.h | 11 +++++++++++ 5 files changed, 44 insertions(+), 12 deletions(-) create mode 100644 trace/stderr.h diff --git a/configure b/configure index e41dcca..d3ab039 100755 --- a/configure +++ b/configure @@ -2947,6 +2947,9 @@ if test "$trace_backend" = "nop"; then elif test "$trace_backend" = "simple"; then echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak fi +if test "$trace_backend" = "stderr"; then + echo "CONFIG_TRACE_STDERR=y" >> $config_host_mak +fi # Set the appropriate trace file. if test "$trace_backend" = "simple"; then trace_file="\"$trace_file-\" FMT_pid" diff --git a/docs/tracing.txt b/docs/tracing.txt index c443171..9c17497 100644 --- a/docs/tracing.txt +++ b/docs/tracing.txt @@ -163,11 +163,6 @@ effectively turns trace events into debug printfs. This is the simplest backend and can be used together with existing code that uses DPRINTF(). -Note that with this backend trace events cannot be programmatically -enabled/disabled. Thus, in order to trim down the amount of output and the -performance impact of tracing, you might want to add the "disable" property in -the "trace-events" file for those events you are not interested in. - === Simpletrace === The "simple" backend supports common use cases and comes as part of the QEMU diff --git a/scripts/tracetool b/scripts/tracetool index c740080..743d246 100755 --- a/scripts/tracetool +++ b/scripts/tracetool @@ -241,7 +241,12 @@ linetoh_begin_stderr() { cat < +#include "trace/stderr.h" + +extern TraceEvent trace_list[]; EOF + + stderr_event_num=0 } linetoh_stderr() @@ -260,29 +265,47 @@ linetoh_stderr() cat <