Skip to content

Commit

Permalink
monitor: delete device_del_bus_completion
Browse files Browse the repository at this point in the history
device_del_bus_completion() that gathers devices from buses is unused; delete
it.

Signed-off-by: Zhu Guihua <zhugh.fnst@cn.fujitsu.com>
Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
  • Loading branch information
Zhu Guihua authored and Luiz Capitulino committed Oct 23, 2014
1 parent 6a1fa9f commit e799157
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions monitor.c
Expand Up @@ -4322,25 +4322,6 @@ void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
g_slist_free(list);
}

static void device_del_bus_completion(ReadLineState *rs, BusState *bus,
const char *str, size_t len)
{
BusChild *kid;

QTAILQ_FOREACH(kid, &bus->children, sibling) {
DeviceState *dev = kid->child;
BusState *dev_child;

if (dev->id && !strncmp(str, dev->id, len)) {
readline_add_completion(rs, dev->id);
}

QLIST_FOREACH(dev_child, &dev->child_bus, sibling) {
device_del_bus_completion(rs, dev_child, str, len);
}
}
}

static void peripheral_device_del_completion(ReadLineState *rs,
const char *str, size_t len)
{
Expand Down Expand Up @@ -4438,7 +4419,6 @@ 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);
}

Expand Down

0 comments on commit e799157

Please sign in to comment.