From patchwork Fri Oct 9 09:15:18 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 528368 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:4830:134:3::10]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id F07741406AA for ; Sat, 10 Oct 2015 05:03:44 +1100 (AEDT) Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zkc14-00044m-F4 for incoming@patchwork.ozlabs.org; Fri, 09 Oct 2015 14:03:42 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:45761) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZkaQG-0004mF-M0 for incoming@patchwork.ozlabs.org; Fri, 09 Oct 2015 12:21:33 -0400 Received: from localhost ([::1]:39626 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZkaF6-0004P8-I3 for incoming@patchwork.ozlabs.org; Fri, 09 Oct 2015 12:10:00 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56259) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZkTly-0004VX-DM for qemu-devel@nongnu.org; Fri, 09 Oct 2015 05:15:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZkTlx-0004Dm-9I for qemu-devel@nongnu.org; Fri, 09 Oct 2015 05:15:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54620) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZkTlw-0004D6-Vx for qemu-devel@nongnu.org; Fri, 09 Oct 2015 05:15:29 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 8B5A6C0BE06A; Fri, 9 Oct 2015 09:15:28 +0000 (UTC) Received: from localhost (ovpn-112-78.ams2.redhat.com [10.36.112.78]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t999FP9W008105; Fri, 9 Oct 2015 05:15:27 -0400 From: Stefan Hajnoczi To: Date: Fri, 9 Oct 2015 10:15:18 +0100 Message-Id: <1444382119-24700-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1444382119-24700-1-git-send-email-stefanha@redhat.com> References: <1444382119-24700-1-git-send-email-stefanha@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x Cc: Peter Maydell , Stefan Hajnoczi , Lin Ma Subject: [Qemu-devel] [PULL 1/2] docs: update the usage example of "dtrace" backend in tracing.txt 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 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 From: Lin Ma The usage example of dtrace is quite ancient, We have tracetool.py with different parameters instead of the original tracetool shell script for a long time, So update the old information. Signed-off-by: Lin Ma Message-id: 1441954730-17341-1-git-send-email-lma@suse.com Signed-off-by: Stefan Hajnoczi --- docs/tracing.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/tracing.txt b/docs/tracing.txt index 7117c5e..3853a6a 100644 --- a/docs/tracing.txt +++ b/docs/tracing.txt @@ -258,11 +258,11 @@ is generated to make use in scripts more convenient. This step can also be performed manually after a build in order to change the binary name in the .stp probes: - scripts/tracetool --dtrace --stap \ - --binary path/to/qemu-binary \ - --target-type system \ - --target-name x86_64 \ - qemu.stp + scripts/tracetool.py --backends=dtrace --format=stap \ + --binary path/to/qemu-binary \ + --target-type system \ + --target-name x86_64 \ + qemu.stp == Trace event properties ==