Re: [Qemu-devel] [PATCH 4/5] Convert block functions to coroutine versions

2013-08-07 Thread Charlie Shepherd
On 06/08/2013 10:36, Kevin Wolf wrote: Am 05.08.2013 um 20:44 hat Charlie Shepherd geschrieben: This patch follows on from the previous one and converts some block layer functions to be explicitly annotated with coroutine_fn instead of yielding depending upon calling context. --- block.c

Re: [Qemu-devel] [PATCH 4/5] Convert block functions to coroutine versions

2013-08-06 Thread Kevin Wolf
Am 05.08.2013 um 20:44 hat Charlie Shepherd geschrieben: This patch follows on from the previous one and converts some block layer functions to be explicitly annotated with coroutine_fn instead of yielding depending upon calling context. --- block.c | 235

[Qemu-devel] [PATCH 4/5] Convert block functions to coroutine versions

2013-08-05 Thread Charlie Shepherd
This patch follows on from the previous one and converts some block layer functions to be explicitly annotated with coroutine_fn instead of yielding depending upon calling context. --- block.c | 235 ++ block/mirror.c| 4 +-

Re: [Qemu-devel] [PATCH 4/5] Convert block functions to coroutine versions

2013-08-05 Thread Gabriel Kerneis
On Mon, Aug 05, 2013 at 08:44:06PM +0200, Charlie Shepherd wrote: This patch follows on from the previous one and converts some block layer functions to be explicitly annotated with coroutine_fn instead of yielding depending upon calling context. And just like the previous one, it also