diff options
author | 2009-08-28 15:27:14 -0300 | |
---|---|---|
committer | 2009-09-04 09:37:31 -0500 | |
commit | f18c16de4a321f1dda01dc7eae8f0aca86900e32 (patch) | |
tree | 8cc320c4b06a81cfe04b91a4ce5f1eb9c6589adc /sysemu.h | |
parent | monitor: Port handler_1 to use QDict (diff) | |
download | qemu-kvm-f18c16de4a321f1dda01dc7eae8f0aca86900e32.tar.gz qemu-kvm-f18c16de4a321f1dda01dc7eae8f0aca86900e32.tar.bz2 qemu-kvm-f18c16de4a321f1dda01dc7eae8f0aca86900e32.zip |
monitor: Port handler_2 to use QDict
This commit ports command handlers that receive two arguments to use
the new monitor's dictionary.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'sysemu.h')
-rw-r--r-- | sysemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -212,7 +212,7 @@ void destroy_bdrvs(dev_match_fn *match_fn, void *arg); /* pci-hotplug */ void pci_device_hot_add(Monitor *mon, const char *pci_addr, const char *type, const char *opts); -void drive_hot_add(Monitor *mon, const char *pci_addr, const char *opts); +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 pci_device_hot_remove_success(int pcibus, int slot); |