From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50734) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8sCt-0000vr-Q9 for qemu-devel@nongnu.org; Thu, 30 Jan 2014 09:03:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8sCp-00057U-H4 for qemu-devel@nongnu.org; Thu, 30 Jan 2014 09:03:03 -0500 Received: from mail-ea0-x232.google.com ([2a00:1450:4013:c01::232]:62974) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8sCp-00057N-Ac for qemu-devel@nongnu.org; Thu, 30 Jan 2014 09:02:59 -0500 Received: by mail-ea0-f178.google.com with SMTP id a15so1662397eae.37 for ; Thu, 30 Jan 2014 06:02:58 -0800 (PST) Date: Thu, 30 Jan 2014 15:02:55 +0100 From: Stefan Hajnoczi Message-ID: <20140130140255.GA24098@stefanha-thinkpad.redhat.com> References: <1391053678-25398-1-git-send-email-mohamad.gebai@polymtl.ca> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1391053678-25398-1-git-send-email-mohamad.gebai@polymtl.ca> Subject: Re: [Qemu-devel] [PATCH v6 0/5] Fix UST backend for LTTng 2.x List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Mohamad Gebai Cc: Mohamad Gebai , alex.bennee@linaro.org, qemu-devel@nongnu.org On Wed, Jan 29, 2014 at 10:47:53PM -0500, Mohamad Gebai wrote: > Version 6 > > * Move ust specific code from tracetool/backend/events.py to > tracetool/backend/ust.py > > Mohamad Gebai (5): > Fix configure script for LTTng 2.x > Modified the tracetool framework for LTTng 2.x > Adapt Makefiles to the new LTTng ust interface > Update documentation for LTTng ust tracing > Add ust generated files to .gitignore > > .gitignore | 2 + > Makefile | 5 ++ > configure | 20 ++++-- > docs/tracing.txt | 36 +++++++++++ > scripts/tracetool/backend/ust.py | 101 ++++++++++++++----------------- > scripts/tracetool/format/ust_events_c.py | 30 +++++++++ > scripts/tracetool/format/ust_events_h.py | 57 +++++++++++++++++ > trace/Makefile.objs | 25 ++++++++ > 8 files changed, 215 insertions(+), 61 deletions(-) > create mode 100644 scripts/tracetool/format/ust_events_c.py > create mode 100644 scripts/tracetool/format/ust_events_h.py Thanks for your efforts to bring the LTTng UST tracer back to life! Applied to my tracing tree: https://github.com/stefanha/qemu/commits/tracing Stefan