Re: [Qemu-devel] [V2 0/25] Async threading for VirtFS using glib threads & coroutines.

2011-05-18 Thread Venkateswararao Jujjuri
On 05/18/2011 03:39 AM, Stefan Hajnoczi wrote: On Tue, May 17, 2011 at 8:43 PM, Venkateswararao Jujjuri (JV) wrote: I sent comments on individual patches. This is turning out nice, many of the PDU handlers are now straight-line code that can be followed easily. Thanks. Yeah it is coming out

Re: [Qemu-devel] [V2 0/25] Async threading for VirtFS using glib threads & coroutines.

2011-05-18 Thread Stefan Hajnoczi
On Tue, May 17, 2011 at 8:43 PM, Venkateswararao Jujjuri (JV) wrote: I sent comments on individual patches. This is turning out nice, many of the PDU handlers are now straight-line code that can be followed easily. > o Redesigned to use bh as per Stefan's suggestion. >  This made the code very

[Qemu-devel] [V2 0/25] Async threading for VirtFS using glib threads & coroutines.

2011-05-17 Thread Venkateswararao Jujjuri (JV)
VirtFS (fileserver base on 9P) performs many blocking system calls in the vCPU context. This effort is to move the blocking calls out of vCPU/IO thread context, into asynchronous threads. Anthony's " Add hard build dependency on glib" patch and Kevin/Stefan's coroutine effort is a prerequisite.