From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40151) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVxZ5-00059C-7q for qemu-devel@nongnu.org; Tue, 24 Jan 2017 04:39:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVxZ0-0000Xe-8q for qemu-devel@nongnu.org; Tue, 24 Jan 2017 04:38:59 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46076) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVxZ0-0000XU-3e for qemu-devel@nongnu.org; Tue, 24 Jan 2017 04:38:54 -0500 Received: from smtp.corp.redhat.com (int-mx16.intmail.prod.int.phx2.redhat.com [10.5.11.28]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 466CA3A76B2 for ; Tue, 24 Jan 2017 09:38:54 +0000 (UTC) References: <20170120164322.21851-1-pbonzini@redhat.com> <20170120164322.21851-7-pbonzini@redhat.com> <20170124093619.GC14563@redhat.com> From: Paolo Bonzini Message-ID: Date: Tue, 24 Jan 2017 10:38:51 +0100 MIME-Version: 1.0 In-Reply-To: <20170124093619.GC14563@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 06/17] io: make qio_channel_yield aware of AioContexts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Daniel P. Berrange" Cc: qemu-devel@nongnu.org, stefanha@redhat.com, famz@redhat.com On 24/01/2017 10:36, Daniel P. Berrange wrote: > On Fri, Jan 20, 2017 at 05:43:11PM +0100, Paolo Bonzini wrote: >> Support separate coroutines for reading and writing, and place the >> read/write handlers on the AioContext that the QIOChannel is registered >> with. >> >> Cc: Daniel P. Berrange >> Signed-off-by: Paolo Bonzini >> --- >> v1->v2: >> improved qio_channel_set_aio_context docs, renamed to >> qio_channel_attach_aio_context [Daniel, Stefan] >> fixed pasto in "io: make qio_channel_yield aware of AioContexts" >> >> include/io/channel.h | 47 ++++++++++++++++++++++++++-- >> io/channel.c | 86 +++++++++++++++++++++++++++++++++++++++------------- >> 2 files changed, 109 insertions(+), 24 deletions(-) > > Signed-off-by: Daniel P. Berrange I suppose you mean either Reviewed-by or Acked-by? :) Anyway, thanks for the reviews! Paolo