From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFpZM-0006VH-4W for qemu-devel@nongnu.org; Wed, 02 Dec 2009 08:48:36 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFpZG-0006SP-Mx for qemu-devel@nongnu.org; Wed, 02 Dec 2009 08:48:34 -0500 Received: from [199.232.76.173] (port=58150 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFpZF-0006S7-Oc for qemu-devel@nongnu.org; Wed, 02 Dec 2009 08:48:30 -0500 Received: from mx1.redhat.com ([209.132.183.28]:47230) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NFpZF-0004Fu-6t for qemu-devel@nongnu.org; Wed, 02 Dec 2009 08:48:29 -0500 From: Glauber Costa Date: Wed, 2 Dec 2009 11:48:13 -0200 Message-Id: <1259761702-4041-3-git-send-email-glommer@redhat.com> In-Reply-To: <1259761702-4041-2-git-send-email-glommer@redhat.com> References: <1259761702-4041-1-git-send-email-glommer@redhat.com> <1259761702-4041-2-git-send-email-glommer@redhat.com> Subject: [Qemu-devel] [PATCH 02/11] store thread-specific env information List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, avi@redhat.com Since we'll have multiple cpu threads, at least for kvm, we need a way to store and retrieve the CPUState associated with the current execution thread. For the I/O thread, this will be NULL. I am using pthread functions for that, for portability, but we could as well use __thread keyword. Signed-off-by: Glauber Costa --- vl.c | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/vl.c b/vl.c index 44763af..321b18d 100644 --- a/vl.c +++ b/vl.c @@ -3434,6 +3434,24 @@ static void block_io_signals(void); static void unblock_io_signals(void); static int tcg_has_work(void); +static pthread_key_t current_env; + +CPUState *qemu_get_current_env(void); +CPUState *qemu_get_current_env(void) +{ + return pthread_getspecific(current_env); +} + +static void qemu_set_current_env(CPUState *env) +{ + pthread_setspecific(current_env, env); +} + +static void qemu_init_current_env(void) +{ + pthread_key_create(¤t_env, NULL); +} + static int qemu_init_main_loop(void) { int ret; @@ -3446,6 +3464,7 @@ static int qemu_init_main_loop(void) qemu_mutex_init(&qemu_fair_mutex); qemu_mutex_init(&qemu_global_mutex); qemu_mutex_lock(&qemu_global_mutex); + qemu_init_current_env(); unblock_io_signals(); qemu_thread_self(&io_thread); @@ -3484,6 +3503,8 @@ static void *kvm_cpu_thread_fn(void *arg) block_io_signals(); qemu_thread_self(env->thread); + qemu_set_current_env(env); + if (kvm_enabled()) kvm_init_vcpu(env); -- 1.6.5.2