[Qemu-devel] [PATCH 0/3] vdi: Implement .bdrv_co_create

Max Reitz posted 3 patches 6 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180312165528.8969-1-mreitz@redhat.com
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test s390x passed
qapi/block-core.json |  20 +++++++-
block/vdi.c          | 139 +++++++++++++++++++++++++++++++++++++++++----------
2 files changed, 132 insertions(+), 27 deletions(-)
[Qemu-devel] [PATCH 0/3] vdi: Implement .bdrv_co_create
Posted by Max Reitz 6 years, 1 month ago
I think cluster-size should not be exposed in QAPI (yet), but Kevin's
patch does that, while I had these patches lying around, so here is my
proposal.


Max Reitz (3):
  vdi: Pull option parsing from vdi_co_create
  vdi: Move file creation to vdi_co_create_opts
  vdi: Implement .bdrv_co_create

 qapi/block-core.json |  20 +++++++-
 block/vdi.c          | 139 +++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 132 insertions(+), 27 deletions(-)

-- 
2.14.3


Re: [Qemu-devel] [PATCH 0/3] vdi: Implement .bdrv_co_create
Posted by Kevin Wolf 6 years, 1 month ago
Am 12.03.2018 um 17:55 hat Max Reitz geschrieben:
> I think cluster-size should not be exposed in QAPI (yet), but Kevin's
> patch does that, while I had these patches lying around, so here is my
> proposal.

Thanks, applied to the block branch.

Kevin