Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-02-22 Thread Kevin Wolf
Am 22.02.2019 um 15:12 hat Max Reitz geschrieben: > On 19.02.19 09:51, Kevin Wolf wrote: > > Am 19.02.2019 um 00:57 hat Max Reitz geschrieben: > >> On 31.01.19 18:55, Kevin Wolf wrote: > >>> This adds a .bdrv_open option to specify the external data file node. > >>> > >>> Signed-off-by: Kevin Wolf

Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-02-22 Thread Max Reitz
On 22.02.19 16:38, Kevin Wolf wrote: > Am 22.02.2019 um 15:12 hat Max Reitz geschrieben: >> On 19.02.19 09:51, Kevin Wolf wrote: >>> Am 19.02.2019 um 00:57 hat Max Reitz geschrieben: On 31.01.19 18:55, Kevin Wolf wrote: > This adds a .bdrv_open option to specify the external data file

Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-02-22 Thread Max Reitz
On 19.02.19 09:51, Kevin Wolf wrote: > Am 19.02.2019 um 00:57 hat Max Reitz geschrieben: >> On 31.01.19 18:55, Kevin Wolf wrote: >>> This adds a .bdrv_open option to specify the external data file node. >>> >>> Signed-off-by: Kevin Wolf >>> --- >>> qapi/block-core.json | 3 ++- >>>

Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-02-19 Thread Kevin Wolf
Am 19.02.2019 um 00:57 hat Max Reitz geschrieben: > On 31.01.19 18:55, Kevin Wolf wrote: > > This adds a .bdrv_open option to specify the external data file node. > > > > Signed-off-by: Kevin Wolf > > --- > > qapi/block-core.json | 3 ++- > > block/qcow2.h| 4 +++- > > block/qcow2.c

Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-02-18 Thread Max Reitz
On 31.01.19 18:55, Kevin Wolf wrote: > This adds a .bdrv_open option to specify the external data file node. > > Signed-off-by: Kevin Wolf > --- > qapi/block-core.json | 3 ++- > block/qcow2.h| 4 +++- > block/qcow2.c| 25 +++-- > 3 files changed, 28

Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-02-01 Thread Kevin Wolf
Am 31.01.2019 um 19:44 hat Eric Blake geschrieben: > On 1/31/19 11:55 AM, Kevin Wolf wrote: > > This adds a .bdrv_open option to specify the external data file node. > > > > Signed-off-by: Kevin Wolf > > --- > > qapi/block-core.json | 3 ++- > > block/qcow2.h| 4 +++- > >

Re: [Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-01-31 Thread Eric Blake
On 1/31/19 11:55 AM, Kevin Wolf wrote: > This adds a .bdrv_open option to specify the external data file node. > > Signed-off-by: Kevin Wolf > --- > qapi/block-core.json | 3 ++- > block/qcow2.h| 4 +++- > block/qcow2.c| 25 +++-- > 3 files changed, 28

[Qemu-devel] [RFC PATCH 08/11] qcow2: Add basic data-file infrastructure

2019-01-31 Thread Kevin Wolf
This adds a .bdrv_open option to specify the external data file node. Signed-off-by: Kevin Wolf --- qapi/block-core.json | 3 ++- block/qcow2.h| 4 +++- block/qcow2.c| 25 +++-- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git