From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:54471) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QypaY-00076D-4t for qemu-devel@nongnu.org; Wed, 31 Aug 2011 14:32:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QypaH-0002EA-Vt for qemu-devel@nongnu.org; Wed, 31 Aug 2011 14:32:29 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:48460) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1QypaH-0002AH-62 for qemu-devel@nongnu.org; Wed, 31 Aug 2011 14:32:21 -0400 From: =?utf-8?b?TGx1w61z?= Date: Wed, 31 Aug 2011 20:31:45 +0200 Message-ID: <20110831183145.849.58639.stgit@ginnungagap.bsc.es> In-Reply-To: <20110831183023.849.39499.stgit@ginnungagap.bsc.es> References: <20110831183023.849.39499.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH v9 12/14] trace-state: [simple] disable all trace points by default List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, chouteau@adacore.com Cc: stefanha@gmail.com Note that this refers to the backend-specific state (whether the output must be generated), not the event "disabled" property (which always uses the "nop" backend). Signed-off-by: LluĂ­s Vilanova --- docs/tracing.txt | 11 ++++++++--- scripts/tracetool | 9 ++------- trace-events | 3 --- 3 files changed, 10 insertions(+), 13 deletions(-) diff --git a/docs/tracing.txt b/docs/tracing.txt index 85793cf..d1d4e8c 100644 --- a/docs/tracing.txt +++ b/docs/tracing.txt @@ -12,11 +12,16 @@ for debugging, profiling, and observing execution. ./configure --trace-backend=simple make -2. Run the virtual machine to produce a trace file: +2. Create a file with the events you want to trace: - qemu ... # your normal QEMU invocation + echo bdrv_aio_readv > /tmp/events + echo bdrv_aio_writev >> /tmp/events -3. Pretty-print the binary trace file: +3. Run the virtual machine to produce a trace file: + + qemu -trace events=/tmp/events ... # your normal QEMU invocation + +4. Pretty-print the binary trace file: ./simpletrace.py trace-events trace-* diff --git a/scripts/tracetool b/scripts/tracetool index e2cf117..c740080 100755 --- a/scripts/tracetool +++ b/scripts/tracetool @@ -221,15 +221,10 @@ EOF linetoc_simple() { - local name state + local name name=$(get_name "$1") - if has_property "$1" "disable"; then - state="0" - else - state="1" - fi cat < must be a valid as a C function name. #