[PATCH 05/10] qemuMigrationCookieNBD: Extract embedded struct

Michal Privoznik mprivozn at redhat.com
Thu Jan 30 15:51:22 UTC 2020


On 1/30/20 3:53 PM, Peter Krempa wrote:
> Extract the struct so that it's type has a name.
> 
> Signed-off-by: Peter Krempa <pkrempa at redhat.com>
> ---
>   src/qemu/qemu_migration_cookie.h | 10 ++++++----
>   1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/src/qemu/qemu_migration_cookie.h b/src/qemu/qemu_migration_cookie.h
> index 20e1ed60ca..1e88684589 100644
> --- a/src/qemu/qemu_migration_cookie.h
> +++ b/src/qemu/qemu_migration_cookie.h
> @@ -84,16 +84,18 @@ struct _qemuMigrationCookieNetwork {
>       qemuMigrationCookieNetDataPtr net;
>   };
> 
> +struct qemuMigrationCookieNBDDisk {
> +    char *target;                   /* Disk target */
> +    unsigned long long capacity;    /* And its capacity */
> +};
> +

Might as well typedef this struct, so that in the next patch you can 
drop the 'struct '.

Michal




More information about the libvir-list mailing list