From patchwork Tue Apr 3 08:38:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lai Jiangshan X-Patchwork-Id: 150353 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 A176EB6FDF for ; Tue, 3 Apr 2012 19:02:53 +1000 (EST) Received: from localhost ([::1]:41313 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEzRc-0005rx-TD for incoming@patchwork.ozlabs.org; Tue, 03 Apr 2012 04:50:28 -0400 Received: from eggs.gnu.org ([208.118.235.92]:37945) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEzQh-0003uj-6f for qemu-devel@nongnu.org; Tue, 03 Apr 2012 04:49:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SEzQe-0006Wv-Qk for qemu-devel@nongnu.org; Tue, 03 Apr 2012 04:49:30 -0400 Received: from [222.73.24.84] (port=8723 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEzQe-0006VE-FL for qemu-devel@nongnu.org; Tue, 03 Apr 2012 04:49:28 -0400 X-IronPort-AV: E=Sophos;i="4.75,362,1330876800"; d="scan'208";a="4676344" Received: from unknown (HELO tang.cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 03 Apr 2012 16:49:02 +0800 Received: from mailserver.fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id q338X7RD029011; Tue, 3 Apr 2012 16:33:27 +0800 Received: from localhost.localdomain ([10.167.225.146]) by mailserver.fnst.cn.fujitsu.com (Lotus Domino Release 8.5.3) with ESMTP id 2012040316325352-36913 ; Tue, 3 Apr 2012 16:32:53 +0800 From: Lai Jiangshan To: Kevin Wolf , Stefan Hajnoczi , Anthony Liguori Date: Tue, 3 Apr 2012 16:38:10 +0800 Message-Id: <1333442297-18932-3-git-send-email-laijs@cn.fujitsu.com> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1333442297-18932-1-git-send-email-laijs@cn.fujitsu.com> References: <1333442297-18932-1-git-send-email-laijs@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/04/03 16:32:53, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/04/03 16:33:20, Serialize complete at 2012/04/03 16:33:20 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 222.73.24.84 Cc: qemu-devel@nongnu.org, Lai Jiangshan Subject: [Qemu-devel] [PATCH 03/10] coroutine: rename qemu_co_queue_next_bh() to qemu_co_process_runnable() 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 Signed-off-by: Lai Jiangshan Reviewed-by: Paolo Bonzini --- qemu-coroutine-lock.c | 6 +++--- trace-events | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qemu-coroutine-lock.c b/qemu-coroutine-lock.c index 10e8dbb..90141cd 100644 --- a/qemu-coroutine-lock.c +++ b/qemu-coroutine-lock.c @@ -33,11 +33,11 @@ static QTAILQ_HEAD(, Coroutine) co_runnable_queue = QTAILQ_HEAD_INITIALIZER(co_runnable_queue); static QEMUBH* co_runnable_bh; -static void qemu_co_queue_next_bh(void *opaque) +static void qemu_co_process_runnable(void *opaque) { Coroutine *next; - trace_qemu_co_queue_next_bh(); + trace_qemu_co_process_runnable(); while ((next = QTAILQ_FIRST(&co_runnable_queue))) { QTAILQ_REMOVE(&co_runnable_queue, next, co_queue_next); qemu_coroutine_enter(next, NULL); @@ -49,7 +49,7 @@ void qemu_co_queue_init(CoQueue *queue) QTAILQ_INIT(&queue->entries); if (!co_runnable_bh) { - co_runnable_bh = qemu_bh_new(qemu_co_queue_next_bh, NULL); + co_runnable_bh = qemu_bh_new(qemu_co_process_runnable, NULL); } } diff --git a/trace-events b/trace-events index 70f059d..a1737c2 100644 --- a/trace-events +++ b/trace-events @@ -561,7 +561,7 @@ qemu_coroutine_yield(void *from, void *to) "from %p to %p" qemu_coroutine_terminate(void *co) "self %p" # qemu-coroutine-lock.c -qemu_co_queue_next_bh(void) "" +qemu_co_process_runnable(void) "" qemu_co_queue_next(void *next) "next %p" qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p" qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p"