From: Marc-André Lureau Date: Tue, 20 Apr 2021 12:58:31 +0000 (+0400) Subject: qga: fix guest-get-disks regression X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bac9b87bd208e1d5adde7d7ba2634f957c22012c;p=qemu.git qga: fix guest-get-disks regression Commit 54aa3de72 ("qapi: Use QAPI_LIST_PREPEND() where possible") inadvertently removed the has_dependencies from the partition disk info, resulting in empty list being returned. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1950833 Signed-off-by: Marc-André Lureau Reviewed-by: Daniel P. Berrangé Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Markus Armbruster Message-id: 20210420125831.233092-1-marcandre.lureau@redhat.com Signed-off-by: Peter Maydell --- diff --git a/qga/commands-posix.c b/qga/commands-posix.c index 4299ebd96f..75dbaab68e 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -1376,6 +1376,7 @@ static GuestDiskInfoList *get_disk_partitions( partition = g_new0(GuestDiskInfo, 1); partition->name = dev_name; partition->partition = true; + partition->has_dependencies = true; /* Add parent disk as dependent for easier tracking of hierarchy */ QAPI_LIST_PREPEND(partition->dependencies, g_strdup(disk_dev));