From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37869) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF26N-0000Or-Bf for qemu-devel@nongnu.org; Tue, 03 Apr 2012 07:40:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SF263-0001sU-Pa for qemu-devel@nongnu.org; Tue, 03 Apr 2012 07:40:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41596) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF263-0001rj-HV for qemu-devel@nongnu.org; Tue, 03 Apr 2012 07:40:23 -0400 Message-ID: <4F7AE26F.3070700@redhat.com> Date: Tue, 03 Apr 2012 13:43:43 +0200 From: Kevin Wolf MIME-Version: 1.0 References: <1333442297-18932-1-git-send-email-laijs@cn.fujitsu.com> <1333442297-18932-3-git-send-email-laijs@cn.fujitsu.com> In-Reply-To: <1333442297-18932-3-git-send-email-laijs@cn.fujitsu.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 03/10] coroutine: rename qemu_co_queue_next_bh() to qemu_co_process_runnable() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Lai Jiangshan Cc: Anthony Liguori , Stefan Hajnoczi , qemu-devel@nongnu.org Am 03.04.2012 10:38, schrieb Lai Jiangshan: > Signed-off-by: Lai Jiangshan > --- > 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) Please keep the _bh suffix there, so that it's obvious that this is used as a bottom half. Kevin