]> Git Repo - qemu.git/commitdiff
monitor: add del completion for peripheral device
authorZhu Guihua <[email protected]>
Tue, 21 Oct 2014 11:46:05 +0000 (19:46 +0800)
committerLuiz Capitulino <[email protected]>
Thu, 23 Oct 2014 13:03:44 +0000 (09:03 -0400)
Add peripheral_device_del_completion() to let peripheral device del completion
be possible.

Signed-off-by: Zhu Guihua <[email protected]>
Reviewed-by: Marcel Apfelbaum <[email protected]>
Reviewed-by: Igor Mammedov <[email protected]>
Signed-off-by: Luiz Capitulino <[email protected]>
monitor.c

index fba4ce2fbea71609ad768a275b356047712b888d..e3799f925edf927e2ab7b7c7034fd62bae2689cc 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -4341,6 +4341,31 @@ static void device_del_bus_completion(ReadLineState *rs,  BusState *bus,
     }
 }
 
+static void peripheral_device_del_completion(ReadLineState *rs,
+                                             const char *str, size_t len)
+{
+    Object *peripheral;
+    GSList *list = NULL, *item;
+
+    peripheral = object_resolve_path("/machine/peripheral/", NULL);
+    if (peripheral == NULL) {
+        return;
+    }
+
+    object_child_foreach(peripheral, qdev_build_hotpluggable_device_list,
+                         &list);
+
+    for (item = list; item; item = g_slist_next(item)) {
+        DeviceState *dev = item->data;
+
+        if (dev->id && !strncmp(str, dev->id, len)) {
+            readline_add_completion(rs, dev->id);
+        }
+    }
+
+    g_slist_free(list);
+}
+
 void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
 {
     size_t len;
@@ -4414,6 +4439,7 @@ void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
     len = strlen(str);
     readline_set_completion_index(rs, len);
     device_del_bus_completion(rs, sysbus_get_default(), str, len);
+    peripheral_device_del_completion(rs, str, len);
 }
 
 void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
This page took 0.030215 seconds and 4 git commands to generate.