Re: [Qemu-devel] [PATCH v4 0/3] aio: Use epoll in aio_poll()

2015-11-03 Thread Stefan Hajnoczi
On Fri, Oct 30, 2015 at 12:06:26PM +0800, Fam Zheng wrote: > v4: Rebase onto master (with aio_disable_external): > Don't use epoll if aio_external_disabled(ctx); > Change assert on epoll_ctl return code to disable epoll; > Rerun benchmark; > > v3: Remove the redundant check in aio_epol

[Qemu-devel] [PATCH v4 0/3] aio: Use epoll in aio_poll()

2015-10-29 Thread Fam Zheng
v4: Rebase onto master (with aio_disable_external): Don't use epoll if aio_external_disabled(ctx); Change assert on epoll_ctl return code to disable epoll; Rerun benchmark; v3: Remove the redundant check in aio_epoll_try_enable. [Stefan] v2: Merge aio-epoll.c into aio-posix.c. [Paolo]