Re: [Qemu-devel] [PATCH v2 0/2] sheepdog: don't sleep in coroutine context

2013-03-12 Thread Stefan Hajnoczi
On Tue, Mar 12, 2013 at 04:05:41PM +0900, MORITA Kazutaka wrote: > This patch prevents the sheepdog driver from sleeping in coroutine > context long time. > > The first patch makes the driver use a non-blocking socket and the > second one fixes a bug that yielded coroutines aren't entered. > > Ch

[Qemu-devel] [PATCH v2 0/2] sheepdog: don't sleep in coroutine context

2013-03-12 Thread MORITA Kazutaka
This patch prevents the sheepdog driver from sleeping in coroutine context long time. The first patch makes the driver use a non-blocking socket and the second one fixes a bug that yielded coroutines aren't entered. Changes from v2: - add a patch to use non-blocking fd - add explanation why it