Re: [Qemu-devel] [PATCH] block: Inactivate all nodes at migration source

2016-04-17 Thread Fam Zheng
On Fri, 04/15 17:11, Kevin Wolf wrote: > Am 15.04.2016 um 05:11 hat Fam Zheng geschrieben: > > qcow2 is not necessarily the top layer node. Since bdrv_inactivate() > > doesn't recurse, we should ensure all block nodes are inactivated. > > > > Signed-off-by: Fam Zheng > > Hm, I don't think that's

Re: [Qemu-devel] [PATCH] block: Inactivate all nodes at migration source

2016-04-15 Thread Kevin Wolf
Am 15.04.2016 um 05:11 hat Fam Zheng geschrieben: > qcow2 is not necessarily the top layer node. Since bdrv_inactivate() > doesn't recurse, we should ensure all block nodes are inactivated. > > Signed-off-by: Fam Zheng Hm, I don't think that's quite right. bdrv_inactivate_all() should be the opp

[Qemu-devel] [PATCH] block: Inactivate all nodes at migration source

2016-04-14 Thread Fam Zheng
qcow2 is not necessarily the top layer node. Since bdrv_inactivate() doesn't recurse, we should ensure all block nodes are inactivated. Signed-off-by: Fam Zheng --- block.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block.c b/block.c index d4939b4..1c575e4 100644 --- a/b