Re: [Qemu-devel] [PATCH] block: remove bs from lists before closing

2019-05-07 Thread Kevin Wolf
Am 07.05.2019 um 10:12 hat Anton Kuchin geschrieben: > Close involves flush that can be performed asynchronously and bs > must be protected from being referenced before it is deleted. > > Signed-off-by: Anton Kuchin Thanks, applied to the block branch. Kevin

[Qemu-devel] [PATCH] block: remove bs from lists before closing

2019-05-07 Thread Anton Kuchin
Close involves flush that can be performed asynchronously and bs must be protected from being referenced before it is deleted. Signed-off-by: Anton Kuchin --- block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block.c b/block.c index 9ae5c0ed2f..b505271a4d 100644 ---