summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKfir Manor <kfir@daynix.com>2023-01-23 15:30:49 +0200
committerKonstantin Kostiuk <kkostiuk@redhat.com>2023-05-04 09:12:32 +0000
commit5a954e0221376e568b1419b6e120af0be83d78bb (patch)
treefb9c2bc7bdf5663f41ec048b5aa27b8f0f812ac1
parent044f8cf70a2fdf3b9e4c4d849c66e7855d2c446a (diff)
downloadfocaccia-qemu-5a954e0221376e568b1419b6e120af0be83d78bb.tar.gz
focaccia-qemu-5a954e0221376e568b1419b6e120af0be83d78bb.zip
qga/linux: add usb support to guest-get-fsinfo
Signed-off-by: Kfir Manor <kfir@daynix.com>
Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
-rw-r--r--qga/commands-posix.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 079689d79a..97754930c1 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -879,7 +879,9 @@ static bool build_guest_fsinfo_for_pci_dev(char const *syspath,
                        g_str_equal(driver, "sym53c8xx") ||
                        g_str_equal(driver, "virtio-pci") ||
                        g_str_equal(driver, "ahci") ||
-                       g_str_equal(driver, "nvme"))) {
+                       g_str_equal(driver, "nvme") ||
+                       g_str_equal(driver, "xhci_hcd") ||
+                       g_str_equal(driver, "ehci-pci"))) {
             break;
         }
 
@@ -976,6 +978,8 @@ static bool build_guest_fsinfo_for_pci_dev(char const *syspath,
         }
     } else if (strcmp(driver, "nvme") == 0) {
         disk->bus_type = GUEST_DISK_BUS_TYPE_NVME;
+    } else if (strcmp(driver, "ehci-pci") == 0 || strcmp(driver, "xhci_hcd") == 0) {
+        disk->bus_type = GUEST_DISK_BUS_TYPE_USB;
     } else {
         g_debug("unknown driver '%s' (sysfs path '%s')", driver, syspath);
         goto cleanup;