monitor: Convert do_pci_device_hot_remove() to QObject
Errors are still directly printed, as we are only converting regular output. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
911d296346
commit
6848d82716
@ -265,7 +265,8 @@ void pci_device_hot_remove(Monitor *mon, const char *pci_addr)
|
||||
qdev_unplug(&d->qdev);
|
||||
}
|
||||
|
||||
void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict)
|
||||
void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict,
|
||||
QObject **ret_data)
|
||||
{
|
||||
pci_device_hot_remove(mon, qdict_get_str(qdict, "pci_addr"));
|
||||
}
|
||||
|
@ -816,7 +816,8 @@ ETEXI
|
||||
.args_type = "pci_addr:s",
|
||||
.params = "[[<domain>:]<bus>:]<slot>",
|
||||
.help = "hot remove PCI device",
|
||||
.mhandler.cmd = do_pci_device_hot_remove,
|
||||
.user_print = monitor_user_noop,
|
||||
.mhandler.cmd_new = do_pci_device_hot_remove,
|
||||
},
|
||||
#endif
|
||||
|
||||
|
3
sysemu.h
3
sysemu.h
@ -208,7 +208,8 @@ DriveInfo *add_init_drive(const char *opts);
|
||||
void pci_device_hot_add(Monitor *mon, const QDict *qdict);
|
||||
void drive_hot_add(Monitor *mon, const QDict *qdict);
|
||||
void pci_device_hot_remove(Monitor *mon, const char *pci_addr);
|
||||
void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
|
||||
void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict,
|
||||
QObject **ret_data);
|
||||
|
||||
/* serial ports */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user