Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-18 Thread Stefan Hajnoczi
On Thu, Nov 18, 2010 at 12:00 AM, Anthony Liguori anth...@codemonkey.ws wrote: Applied both.  Thanks. I'm afraid you have applied an old version of the patches. Please revert these, and apply version 6, from Nov 12th Sure, sorry about that. But in the future, please indicate the version

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-17 Thread Daniel P. Berrange
On Tue, Nov 16, 2010 at 09:46:20AM -0600, Anthony Liguori wrote: On 11/08/2010 01:33 PM, Daniel P. Berrange wrote: This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core functionality should be applicable and standard across any

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-17 Thread Daniel P. Berrange
On Tue, Nov 16, 2010 at 06:54:57PM +, Peter Maydell wrote: On 16 November 2010 18:10, Anthony Liguori anth...@codemonkey.ws wrote: On 11/16/2010 11:43 AM, Peter Maydell wrote: Unfortunately these commits: 2834c3e Add support for generating a systemtap tapset static probes 4addb11 Add

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-17 Thread Anthony Liguori
On 11/17/2010 05:35 AM, Daniel P. Berrange wrote: On Tue, Nov 16, 2010 at 09:46:20AM -0600, Anthony Liguori wrote: On 11/08/2010 01:33 PM, Daniel P. Berrange wrote: This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-16 Thread Anthony Liguori
On 11/08/2010 01:33 PM, Daniel P. Berrange wrote: This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core functionality should be applicable and standard across any DTrace implementation on Solaris, OS-X, *BSD, but the Makefile rules

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-16 Thread Anthony Liguori
On 11/16/2010 11:43 AM, Peter Maydell wrote: On 16 November 2010 15:46, Anthony Liguorianth...@codemonkey.ws wrote: On 11/08/2010 01:33 PM, Daniel P. Berrange wrote: This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing.

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-16 Thread Peter Maydell
On 16 November 2010 18:10, Anthony Liguori anth...@codemonkey.ws wrote: On 11/16/2010 11:43 AM, Peter Maydell wrote: Unfortunately these commits: 2834c3e Add support for generating a systemtap tapset static probes 4addb11 Add a DTrace tracing backend targetted for SystemTAP compatability

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-16 Thread Anthony Liguori
On 11/16/2010 12:54 PM, Peter Maydell wrote: On 16 November 2010 18:10, Anthony Liguorianth...@codemonkey.ws wrote: On 11/16/2010 11:43 AM, Peter Maydell wrote: Unfortunately these commits: 2834c3e Add support for generating a systemtap tapset static probes 4addb11 Add a DTrace

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-16 Thread Peter Maydell
On 16 November 2010 18:58, Anthony Liguori anth...@codemonkey.ws wrote: On 11/16/2010 12:54 PM, Peter Maydell wrote: If I add a .PHONY: trace or change the trace target name to tracexyzzy then this fixes the problem. Curious, care to send a patch?  I think I'm not seeing this because I build

[Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-12 Thread Daniel P. Berrange
This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core functionality should be applicable and standard across any DTrace implementation on Solaris, OS-X, *BSD, but the Makefile rules will likely need some small additional changes to

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-12 Thread Stefan Hajnoczi
On Fri, Nov 12, 2010 at 1:20 PM, Daniel P. Berrange berra...@redhat.com wrote: This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core functionality should be applicable and standard across any DTrace implementation on Solaris,

[Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-08 Thread Daniel P. Berrange
From: Daniel P. Berrange berra...@redhat.com This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core functionality should be applicable and standard across any DTrace implementation on Solaris, OS-X, *BSD, but the Makefile rules will

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-08 Thread Stefan Hajnoczi
On Mon, Nov 8, 2010 at 11:33 AM, Daniel P. Berrange d...@berrange.com wrote: diff --git a/Makefile b/Makefile index 02698e9..384bf72 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@  # Makefile for QEMU.  GENERATED_HEADERS = config-host.h trace.h qemu-options.def +GENERATED_HEADERS =

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-08 Thread Daniel P. Berrange
On Mon, Nov 08, 2010 at 04:52:01PM +, Stefan Hajnoczi wrote: On Mon, Nov 8, 2010 at 11:33 AM, Daniel P. Berrange d...@berrange.com wrote: diff --git a/Makefile b/Makefile index 02698e9..384bf72 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,10 @@  # Makefile for QEMU.  

Re: [Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-08 Thread Stefan Hajnoczi
On Mon, Nov 8, 2010 at 4:57 PM, Daniel P. Berrange berra...@redhat.com wrote: On Mon, Nov 08, 2010 at 04:52:01PM +, Stefan Hajnoczi wrote: On Mon, Nov 8, 2010 at 11:33 AM, Daniel P. Berrange d...@berrange.com wrote: diff --git a/Makefile b/Makefile index 02698e9..384bf72 100644 ---

[Qemu-devel] [PATCH 1/2] Add a DTrace tracing backend targetted for SystemTAP compatability

2010-11-08 Thread Daniel P. Berrange
This introduces a new tracing backend that targets the SystemTAP implementation of DTrace userspace tracing. The core functionality should be applicable and standard across any DTrace implementation on Solaris, OS-X, *BSD, but the Makefile rules will likely need some small additional changes to