From patchwork Thu Dec 20 22:28:43 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Llu=C3=ADs_Vilanova?= X-Patchwork-Id: 207718 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id D7C972C0092 for ; Fri, 21 Dec 2012 09:29:03 +1100 (EST) Received: from localhost ([::1]:60128 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tlobt-0002RL-PA for incoming@patchwork.ozlabs.org; Thu, 20 Dec 2012 17:29:01 -0500 Received: from eggs.gnu.org ([208.118.235.92]:45440) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tlobj-0002Ql-Bz for qemu-devel@nongnu.org; Thu, 20 Dec 2012 17:28:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tlobg-0004Mq-Kx for qemu-devel@nongnu.org; Thu, 20 Dec 2012 17:28:51 -0500 Received: from roura.ac.upc.edu ([147.83.33.10]:55932 helo=roura.ac.upc.es) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tlobg-0004Ma-AV for qemu-devel@nongnu.org; Thu, 20 Dec 2012 17:28:48 -0500 Received: from gw.ac.upc.edu (gw.ac.upc.es [147.83.30.3]) by roura.ac.upc.es (8.13.8/8.13.8) with ESMTP id qBKMShiU017654; Thu, 20 Dec 2012 23:28:43 +0100 Received: from localhost (unknown [84.88.51.85]) by gw.ac.upc.edu (Postfix) with ESMTP id 46CAD6B01A5; Thu, 20 Dec 2012 23:28:43 +0100 (CET) From: =?utf-8?b?TGx1w61z?= Vilanova To: qemu-devel@nongnu.org Date: Thu, 20 Dec 2012 23:28:43 +0100 Message-Id: <20121220222842.22564.53393.stgit@fimbulvetr.bsc.es> X-Mailer: git-send-email 1.7.10.4 User-Agent: StGit/0.16 MIME-Version: 1.0 X-MIME-Autoconverted: from 8bit to quoted-printable by roura.ac.upc.es id qBKMShiU017654 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 147.83.33.10 Cc: Blue Swirl , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH v7 1/9] series: Generic event state description 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 --- covers/generic-events | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 covers/generic-events diff --git a/covers/generic-events b/covers/generic-events new file mode 100644 index 0000000..ab61bc5 --- /dev/null +++ b/covers/generic-events @@ -0,0 +1,57 @@ +From: %(sender)s +Subject: [%(prefix)sPATCH%(version)s%(number)s] trace: Generic event state description + +Provides a generic event state description structure (TraceEvent) and a more +detailed event control and query interface. + +This is achieved by creating a new "non-public" tracing backend (i.e., not +selectable by the user at configure time) that will generate the appropriate +event description information. + +Signed-off-by: LluĂ­s Vilanova +--- + +Changes in v7: + +* Rebase on a8a826a from master. +* Moved compilation & code generation for "trace/" into a separate makefile. +* Renamed targets and moved rules according to the new makefile structure. + +Changes in v6: + +* Fixed typos in the documentation of the 'TraceEvent' struct. + +Changes in v5: + +* Rebase on dbaf26b3 from master. +* Always initialize temporary 'ev' in 'trace_backend_init_events'. +* Make common sanity checks in 'trace_event_set_state_dynamic' and delay + backend-specific code to 'trace_event_set_state_dynamic_backend'. + +Changes in v4: + +* Documentation fixes and (re)formatting. + +Changes in v3: + +* Add some assertions. + +* Remove debugging printf's. + +* Improve documentation. + +* Make 'trace_event_get_state_static' use run-time information, and leave + TRACE_*_ENABLED for compile-time checks. + + +Changes in v2: + +* Minor compilation fixes. + + +%(shortlog)s +%(diffstat)s + +To: qemu-devel@nongnu.org +Cc: Stefan Hajnoczi +Cc: Blue Swirl