[libvirt] [PATCH 10/30] storagefile: Rename qcow2GetBackingStoreFormat

Daniel Henrique Barboza danielhb413 at gmail.com
Wed Oct 9 21:04:58 UTC 2019



On 10/7/19 6:49 PM, Cole Robinson wrote:
> ...to qcow2GetExtensions. We will extend it for more extension
> parsing in future patches
>
> Signed-off-by: Cole Robinson <crobinso at redhat.com>
> ---

Reviewed-by: Daniel Henrique Barboza <danielhb413 at gmail.com>

>   src/util/virstoragefile.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/src/util/virstoragefile.c b/src/util/virstoragefile.c
> index b8f7faf580..d6bd38777b 100644
> --- a/src/util/virstoragefile.c
> +++ b/src/util/virstoragefile.c
> @@ -427,9 +427,9 @@ cowGetBackingStore(char **res,
>   
>   
>   static int
> -qcow2GetBackingStoreFormat(int *format,
> -                           const char *buf,
> -                           size_t buf_size)
> +qcow2GetExtensions(int *format,
> +                   const char *buf,
> +                   size_t buf_size)
>   {
>       size_t offset;
>       size_t extension_start;
> @@ -561,7 +561,7 @@ qcowXGetBackingStore(char **res,
>       memcpy(*res, buf + offset, size);
>       (*res)[size] = '\0';
>   
> -    if (qcow2GetBackingStoreFormat(format, buf, buf_size) < 0)
> +    if (qcow2GetExtensions(format, buf, buf_size) < 0)
>           return BACKING_STORE_INVALID;
>   
>       return BACKING_STORE_OK;




More information about the libvir-list mailing list