Re: [Qemu-devel] [PATCH v4 1/4] block: introducing 'bdrv_co_delete_file' interface

2019-08-06 Thread Daniel Henrique Barboza
On 8/6/19 12:21 PM, Kevin Wolf wrote: Am 06.08.2019 um 15:27 hat Daniel Henrique Barboza geschrieben: diff --git a/block.c b/block.c index c139540f2b..6e2b0f528d 100644 --- a/block.c +++ b/block.c @@ -621,6 +621,17 @@ int get_tmp_filename(char *filename, int size) #endif } +/** + * Help

Re: [Qemu-devel] [PATCH v4 1/4] block: introducing 'bdrv_co_delete_file' interface

2019-08-06 Thread Kevin Wolf
Am 06.08.2019 um 15:27 hat Daniel Henrique Barboza geschrieben: > > > diff --git a/block.c b/block.c > > > index c139540f2b..6e2b0f528d 100644 > > > --- a/block.c > > > +++ b/block.c > > > @@ -621,6 +621,17 @@ int get_tmp_filename(char *filename, int size) > > > #endif > > > } > > > +/** > > >

Re: [Qemu-devel] [PATCH v4 1/4] block: introducing 'bdrv_co_delete_file' interface

2019-08-06 Thread Daniel Henrique Barboza
Hey, On 8/2/19 1:07 PM, Kevin Wolf wrote: Am 28.06.2019 um 21:45 hat Daniel Henrique Barboza geschrieben: Adding to Block Drivers the capability of being able to clean up its created files can be useful in certain situations. For the LUKS driver, for instance, a failure in one of its authentica

Re: [Qemu-devel] [PATCH v4 1/4] block: introducing 'bdrv_co_delete_file' interface

2019-08-02 Thread Kevin Wolf
Am 28.06.2019 um 21:45 hat Daniel Henrique Barboza geschrieben: > Adding to Block Drivers the capability of being able to clean up > its created files can be useful in certain situations. For the > LUKS driver, for instance, a failure in one of its authentication > steps can leave files in the host

[Qemu-devel] [PATCH v4 1/4] block: introducing 'bdrv_co_delete_file' interface

2019-06-28 Thread Daniel Henrique Barboza
Adding to Block Drivers the capability of being able to clean up its created files can be useful in certain situations. For the LUKS driver, for instance, a failure in one of its authentication steps can leave files in the host that weren't there before. This patch adds the 'bdrv_co_delete_file' i