From patchwork Wed Sep 21 13:23:27 2011 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: 115782 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id A77F6B6F65 for ; Wed, 21 Sep 2011 23:25:20 +1000 (EST) Received: from localhost ([::1]:36413 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6Mnc-0000qG-L8 for incoming@patchwork.ozlabs.org; Wed, 21 Sep 2011 09:25:16 -0400 Received: from eggs.gnu.org ([140.186.70.92]:52319) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6MnU-0000oI-RY for qemu-devel@nongnu.org; Wed, 21 Sep 2011 09:25:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R6MnT-0003TC-HU for qemu-devel@nongnu.org; Wed, 21 Sep 2011 09:25:08 -0400 Received: from gw.ac.upc.es ([147.83.30.3]:37570 helo=gw.ac.upc.edu) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6MnT-0003So-Bs for qemu-devel@nongnu.org; Wed, 21 Sep 2011 09:25:07 -0400 Received: from localhost (unknown [84.88.53.92]) by gw.ac.upc.edu (Postfix) with ESMTP id AAEAE6B0245; Wed, 21 Sep 2011 15:25:05 +0200 (CEST) To: qemu-devel@nongnu.org From: =?utf-8?b?TGx1w61z?= Vilanova Date: Wed, 21 Sep 2011 15:23:27 +0200 Message-ID: <20110921132327.3516.46430.stgit@ginnungagap.bsc.es> In-Reply-To: <20110921132322.3516.25189.stgit@ginnungagap.bsc.es> References: <20110921132322.3516.25189.stgit@ginnungagap.bsc.es> User-Agent: StGit/0.15 MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 147.83.30.3 Cc: Jan Kiszka , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 2/3] trace: Add "vcpu_init" event 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 Signals the creation of a new vCPU (CPUState structure). Signed-off-by: LluĂ­s Vilanova --- cpus.c | 1 + qemu-common.h | 3 +++ trace-events | 7 +++++++ 3 files changed, 11 insertions(+), 0 deletions(-) diff --git a/cpus.c b/cpus.c index 8978779..2b4f9b8 100644 --- a/cpus.c +++ b/cpus.c @@ -856,6 +856,7 @@ void qemu_init_vcpu(void *_env) } else { qemu_tcg_init_vcpu(env); } + trace_vcpu_init(env); } void qemu_notify_event(void) diff --git a/qemu-common.h b/qemu-common.h index fca101e..b78e71f 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -296,9 +296,12 @@ struct qemu_work_item { int done; }; +#include "trace.h" + #ifdef CONFIG_USER_ONLY static inline void qemu_init_vcpu(void *env) { + trace_vcpu_init(env); } #else void qemu_init_vcpu(void *env); diff --git a/trace-events b/trace-events index 658f0bc..cc59149 100644 --- a/trace-events +++ b/trace-events @@ -502,3 +502,10 @@ escc_sunkbd_event_in(int ch) "Untranslated keycode %2.2x" escc_sunkbd_event_out(int ch) "Translated keycode %2.2x" escc_kbd_command(int val) "Command %d" escc_sunmouse_event(int dx, int dy, int buttons_state) "dx=%d dy=%d buttons=%01x" + +### Abstract events (not specific to a file; keep at bottom) + +## vCPU + +# Create a new vCPU (CPUState structure) +vcpu_init(void *vcpu) "%p"