mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
hmp: Name HMP command handler functions hmp_COMMAND()
Some are called do_COMMAND() (old ones, usually), some hmp_COMMAND(), and sometimes COMMAND pointlessly differs in spelling. Normalize to hmp_COMMAND(), where COMMAND is exactly the command name with '-' replaced by '_'. Exceptions: * do_device_add() and client_migrate_info() *not* renamed to hmp_device_add(), hmp_client_migrate_info(), because they're also QMP handlers. They still need to be converted to QAPI. * do_memory_dump(), do_physical_memory_dump(), do_ioport_read(), do_ioport_write() renamed do hmp_* instead of hmp_x(), hmp_xp(), hmp_i(), hmp_o(), because those names are too cryptic for my taste. * do_info_help() renamed to hmp_info_help() instead of hmp_info(), because it only covers help. Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
08d15d6c23
commit
3e5a50d64c
21 changed files with 110 additions and 110 deletions
|
@ -70,7 +70,7 @@ BlockBackend *blk_next(BlockBackend *blk);
|
|||
|
||||
BlockDriverState *blk_bs(BlockBackend *blk);
|
||||
|
||||
void blk_hide_on_behalf_of_do_drive_del(BlockBackend *blk);
|
||||
void blk_hide_on_behalf_of_hmp_drive_del(BlockBackend *blk);
|
||||
|
||||
void blk_iostatus_enable(BlockBackend *blk);
|
||||
int blk_attach_dev(BlockBackend *blk, void *dev);
|
||||
|
|
|
@ -67,6 +67,6 @@ DriveInfo *add_init_drive(const char *opts);
|
|||
|
||||
void qmp_change_blockdev(const char *device, const char *filename,
|
||||
const char *format, Error **errp);
|
||||
void do_commit(Monitor *mon, const QDict *qdict);
|
||||
int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
||||
void hmp_commit(Monitor *mon, const QDict *qdict);
|
||||
int hmp_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data);
|
||||
#endif
|
||||
|
|
|
@ -74,9 +74,9 @@ void qemu_remove_exit_notifier(Notifier *notify);
|
|||
|
||||
void qemu_add_machine_init_done_notifier(Notifier *notify);
|
||||
|
||||
void do_savevm(Monitor *mon, const QDict *qdict);
|
||||
void hmp_savevm(Monitor *mon, const QDict *qdict);
|
||||
int load_vmstate(const char *name);
|
||||
void do_delvm(Monitor *mon, const QDict *qdict);
|
||||
void hmp_delvm(Monitor *mon, const QDict *qdict);
|
||||
void do_info_snapshots(Monitor *mon, const QDict *qdict);
|
||||
|
||||
void qemu_announce_self(void);
|
||||
|
@ -175,16 +175,16 @@ extern const char *prom_envs[MAX_PROM_ENVS];
|
|||
extern unsigned int nb_prom_envs;
|
||||
|
||||
/* pci-hotplug */
|
||||
void pci_device_hot_add(Monitor *mon, const QDict *qdict);
|
||||
void hmp_pci_add(Monitor *mon, const QDict *qdict);
|
||||
int pci_drive_hot_add(Monitor *mon, const QDict *qdict, DriveInfo *dinfo);
|
||||
void do_pci_device_hot_remove(Monitor *mon, const QDict *qdict);
|
||||
void hmp_pci_del(Monitor *mon, const QDict *qdict);
|
||||
|
||||
/* generic hotplug */
|
||||
void drive_hot_add(Monitor *mon, const QDict *qdict);
|
||||
void hmp_drive_add(Monitor *mon, const QDict *qdict);
|
||||
|
||||
/* pcie aer error injection */
|
||||
void pcie_aer_inject_error_print(Monitor *mon, const QObject *data);
|
||||
int do_pcie_aer_inject_error(Monitor *mon,
|
||||
int hmp_pcie_aer_inject_error(Monitor *mon,
|
||||
const QDict *qdict, QObject **ret_data);
|
||||
|
||||
/* serial ports */
|
||||
|
@ -199,8 +199,8 @@ extern CharDriverState *serial_hds[MAX_SERIAL_PORTS];
|
|||
|
||||
extern CharDriverState *parallel_hds[MAX_PARALLEL_PORTS];
|
||||
|
||||
void do_usb_add(Monitor *mon, const QDict *qdict);
|
||||
void do_usb_del(Monitor *mon, const QDict *qdict);
|
||||
void hmp_usb_add(Monitor *mon, const QDict *qdict);
|
||||
void hmp_usb_del(Monitor *mon, const QDict *qdict);
|
||||
void usb_info(Monitor *mon, const QDict *qdict);
|
||||
|
||||
void add_boot_device_path(int32_t bootindex, DeviceState *dev,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue