From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42811) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zla0W-0001aj-VD for qemu-devel@nongnu.org; Mon, 12 Oct 2015 06:07:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zla0T-00012a-Az for qemu-devel@nongnu.org; Mon, 12 Oct 2015 06:07:04 -0400 References: <1444643731-15346-1-git-send-email-famz@redhat.com> <1444643731-15346-4-git-send-email-famz@redhat.com> From: Paolo Bonzini Message-ID: <561B863B.90006@redhat.com> Date: Mon, 12 Oct 2015 12:06:51 +0200 MIME-Version: 1.0 In-Reply-To: <1444643731-15346-4-git-send-email-famz@redhat.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/3] aio: Introduce aio-epoll.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: kwolf@redhat.com, qemu-block@nongnu.org, Stefan Hajnoczi On 12/10/2015 11:55, Fam Zheng wrote: > Signed-off-by: Fam Zheng > --- > Makefile.objs | 1 + > aio-epoll.c | 150 +++++++++++++++++++++++++++++++++++++++++++ > aio-posix.c | 16 ++++- > include/block/aio-internal.h | 15 +++++ > include/block/aio.h | 5 ++ > stubs/Makefile.objs | 1 + > stubs/aio-epoll.c | 37 +++++++++++ > 7 files changed, 223 insertions(+), 2 deletions(-) > create mode 100644 aio-epoll.c > create mode 100644 stubs/aio-epoll.c aio-epoll.c seems small enough that you can just include everything in aio-posix.c. This should simplify everything and make patch 1 unnecessary, too. Paolo