From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=33758 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PFXSz-0008Kz-DC for qemu-devel@nongnu.org; Mon, 08 Nov 2010 14:33:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PFXSy-0000bi-Fj for qemu-devel@nongnu.org; Mon, 08 Nov 2010 14:33:21 -0500 Received: from mx1.redhat.com ([209.132.183.28]:16956) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PFXSy-0000bX-8t for qemu-devel@nongnu.org; Mon, 08 Nov 2010 14:33:20 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id oA8JXJ2G003503 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 8 Nov 2010 14:33:19 -0500 Received: from t500wlan.home.berrange.com.com (vpn1-4-250.ams2.redhat.com [10.36.4.250]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id oA8JXIsY019783 for ; Mon, 8 Nov 2010 14:33:18 -0500 From: "Daniel P. Berrange" Date: Mon, 8 Nov 2010 19:33:06 +0000 Message-Id: <1289244788-19961-1-git-send-email-berrange@redhat.com> Subject: [Qemu-devel] [PATCH 0/2] Add support for SystemTAP and DTrace tracing backends (v5) List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org A repost of the SystemTAP/DTrace patches from http://lists.gnu.org/archive/html/qemu-devel/2010-11/msg00496.html The patch is now split into two pieces. The first patch contains the generic DTrace tracing backend support. The second patch contains additional pieces for SystemTAP to generate a tapset for each of the qemu-system-XXX binaries, to simplify life for admins wanting to use the tracing backend. This addresses the problem in previous versions of the patch where the tapset only worked for /usr/bin/qemu and no other binaries. Unfortunately SystemTAP does not allow for use of wildcards, so it was neccessary to go for a separate tapset file per emulator binary. Changes in v5: - The Makefile merge error is now fixed