mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-16 04:12:13 +00:00
qdev: factor out qdev_print_devinfo.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
213189ab65
commit
1b524b0441
19
hw/qdev.c
19
hw/qdev.c
@ -105,6 +105,21 @@ DeviceState *qdev_create(BusState *bus, const char *name)
|
|||||||
return dev;
|
return dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int qdev_print_devinfo(DeviceInfo *info, char *dest, int len)
|
||||||
|
{
|
||||||
|
int pos = 0;
|
||||||
|
|
||||||
|
pos += snprintf(dest+pos, len-pos, "name \"%s\", bus %s",
|
||||||
|
info->name, info->bus_info->name);
|
||||||
|
if (info->alias)
|
||||||
|
pos += snprintf(dest+pos, len-pos, ", alias \"%s\"", info->alias);
|
||||||
|
if (info->desc)
|
||||||
|
pos += snprintf(dest+pos, len-pos, ", desc \"%s\"", info->desc);
|
||||||
|
if (info->no_user)
|
||||||
|
pos += snprintf(dest+pos, len-pos, ", no-user");
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
DeviceState *qdev_device_add(const char *cmdline)
|
DeviceState *qdev_device_add(const char *cmdline)
|
||||||
{
|
{
|
||||||
DeviceInfo *info;
|
DeviceInfo *info;
|
||||||
@ -120,8 +135,10 @@ DeviceState *qdev_device_add(const char *cmdline)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (strcmp(driver, "?") == 0) {
|
if (strcmp(driver, "?") == 0) {
|
||||||
|
char msg[256];
|
||||||
for (info = device_info_list; info != NULL; info = info->next) {
|
for (info = device_info_list; info != NULL; info = info->next) {
|
||||||
fprintf(stderr, "name \"%s\", bus %s\n", info->name, info->bus_info->name);
|
qdev_print_devinfo(info, msg, sizeof(msg));
|
||||||
|
fprintf(stderr, "%s\n", msg);
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user