Re: [Qemu-devel] [PATCH v3 1/4] vmdk: Refactor vmdk_create_extent

2018-12-07 Thread Markus Armbruster
Kevin Wolf writes: > Am 07.12.2018 um 07:40 hat Markus Armbruster geschrieben: >> Kevin Wolf writes: >> >> > From: Fam Zheng >> > >> > The extracted vmdk_init_extent takes a BlockBackend object and >> > initializes the format metadata. It is the common part between "qemu-img >> > create" and "

Re: [Qemu-devel] [PATCH v3 1/4] vmdk: Refactor vmdk_create_extent

2018-12-07 Thread Kevin Wolf
Am 07.12.2018 um 07:40 hat Markus Armbruster geschrieben: > Kevin Wolf writes: > > > From: Fam Zheng > > > > The extracted vmdk_init_extent takes a BlockBackend object and > > initializes the format metadata. It is the common part between "qemu-img > > create" and "blockdev-create". > > > > Add

Re: [Qemu-devel] [PATCH v3 1/4] vmdk: Refactor vmdk_create_extent

2018-12-06 Thread Markus Armbruster
Kevin Wolf writes: > From: Fam Zheng > > The extracted vmdk_init_extent takes a BlockBackend object and > initializes the format metadata. It is the common part between "qemu-img > create" and "blockdev-create". > > Add a "BlockBackend *pbb" parameter to vmdk_create_extent, to return the > opene

[Qemu-devel] [PATCH v3 1/4] vmdk: Refactor vmdk_create_extent

2018-12-06 Thread Kevin Wolf
From: Fam Zheng The extracted vmdk_init_extent takes a BlockBackend object and initializes the format metadata. It is the common part between "qemu-img create" and "blockdev-create". Add a "BlockBackend *pbb" parameter to vmdk_create_extent, to return the opened BB to the caller in the next patc