From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37199) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atbPc-0005K1-Fl for qemu-devel@nongnu.org; Fri, 22 Apr 2016 09:46:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1atbPb-0001X3-Mu for qemu-devel@nongnu.org; Fri, 22 Apr 2016 09:46:24 -0400 Date: Fri, 22 Apr 2016 16:46:09 +0300 From: "Michael S. Tsirkin" Message-ID: <20160422164605-mutt-send-email-mst@redhat.com> References: <1461322564-17440-1-git-send-email-famz@redhat.com> <1461322564-17440-2-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1461322564-17440-2-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 for-2.6 1/5] iohandler: Introduce iohandler_get_aio_context List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: qemu-devel@nongnu.org, Stefan Hajnoczi , Jeff Cody , Kevin Wolf , Max Reitz , Paolo Bonzini , qemu-block@nongnu.org On Fri, Apr 22, 2016 at 06:56:00PM +0800, Fam Zheng wrote: > Signed-off-by: Fam Zheng Reviewed-by: Michael S. Tsirkin > --- > include/qemu/main-loop.h | 1 + > iohandler.c | 6 ++++++ > stubs/Makefile.objs | 1 + > stubs/iohandler.c | 8 ++++++++ > 4 files changed, 16 insertions(+) > create mode 100644 stubs/iohandler.c > > diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h > index 9976909..19b5de3 100644 > --- a/include/qemu/main-loop.h > +++ b/include/qemu/main-loop.h > @@ -204,6 +204,7 @@ void qemu_set_fd_handler(int fd, > void *opaque); > > GSource *iohandler_get_g_source(void); > +AioContext *iohandler_get_aio_context(void); > #ifdef CONFIG_POSIX > /** > * qemu_add_child_watch: Register a child process for reaping. > diff --git a/iohandler.c b/iohandler.c > index 3f23433..f2fc8a9 100644 > --- a/iohandler.c > +++ b/iohandler.c > @@ -44,6 +44,12 @@ static void iohandler_init(void) > } > } > > +AioContext *iohandler_get_aio_context(void) > +{ > + iohandler_init(); > + return iohandler_ctx; > +} > + > GSource *iohandler_get_g_source(void) > { > iohandler_init(); > diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs > index b6d1e65..4b258a6 100644 > --- a/stubs/Makefile.objs > +++ b/stubs/Makefile.objs > @@ -40,3 +40,4 @@ stub-obj-y += qmp_pc_dimm_device_list.o > stub-obj-y += target-monitor-defs.o > stub-obj-y += target-get-monitor-def.o > stub-obj-y += vhost.o > +stub-obj-y += iohandler.o > diff --git a/stubs/iohandler.c b/stubs/iohandler.c > new file mode 100644 > index 0000000..22b0ee5 > --- /dev/null > +++ b/stubs/iohandler.c > @@ -0,0 +1,8 @@ > +#include "qemu/osdep.h" > +#include "qemu-common.h" > +#include "qemu/main-loop.h" > + > +AioContext *iohandler_get_aio_context(void) > +{ > + abort(); > +} > -- > 2.8.0