summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Tosatti <mtosatti@redhat.com>2009-10-14 18:41:14 -0300
committerMarcelo Tosatti <mtosatti@redhat.com>2009-10-14 18:41:14 -0300
commite7bd5f06431a9c0a1b3e5b5c757318c77deb2879 (patch)
tree0eaef2bba8c6a47c16bb6355f71317b872bab04c /qemu-monitor.hx
parentMerge commit 'd7f9b68971d5f9111afeae03c61199346b868c13' into upstream-merge (diff)
parentmonitor: union for command handlers (diff)
downloadqemu-kvm-e7bd5f06431a9c0a1b3e5b5c757318c77deb2879.tar.gz
qemu-kvm-e7bd5f06431a9c0a1b3e5b5c757318c77deb2879.tar.bz2
qemu-kvm-e7bd5f06431a9c0a1b3e5b5c757318c77deb2879.zip
Merge commit 'af4ce882d530d4aa9ed26de3423a36e4a156d0a5' into upstream-merge
* commit 'af4ce882d530d4aa9ed26de3423a36e4a156d0a5': monitor: union for command handlers monitor: union for info handlers Conflicts: qemu-monitor.hx Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r--qemu-monitor.hx132
1 files changed, 69 insertions, 63 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 45275fe8e..e3ce8408c 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -12,9 +12,9 @@ ETEXI
{
.name = "help|?",
.args_type = "name:s?",
- .handler = do_help_cmd,
.params = "[cmd]",
.help = "show the help",
+ .mhandler.cmd = do_help_cmd,
},
STEXI
@@ -25,9 +25,9 @@ ETEXI
{
.name = "commit",
.args_type = "device:B",
- .handler = do_commit,
.params = "device|all",
.help = "commit changes to the disk images (if -snapshot is used) or backing files",
+ .mhandler.cmd = do_commit,
},
STEXI
@@ -38,9 +38,9 @@ ETEXI
{
.name = "info",
.args_type = "item:s?",
- .handler = do_info,
.params = "[subcommand]",
.help = "show various information about the system state",
+ .mhandler.cmd = do_info,
},
STEXI
@@ -116,9 +116,9 @@ ETEXI
{
.name = "q|quit",
.args_type = "",
- .handler = do_quit,
.params = "",
.help = "quit the emulator",
+ .mhandler.cmd = do_quit,
},
STEXI
@@ -129,9 +129,9 @@ ETEXI
{
.name = "eject",
.args_type = "force:-f,filename:B",
- .handler = do_eject,
.params = "[-f] device",
.help = "eject a removable medium (use -f to force it)",
+ .mhandler.cmd = do_eject,
},
STEXI
@@ -142,9 +142,9 @@ ETEXI
{
.name = "change",
.args_type = "device:B,target:F,arg:s?",
- .handler = do_change,
.params = "device filename [format]",
.help = "change a removable medium, optional format",
+ .mhandler.cmd = do_change,
},
STEXI
@@ -187,9 +187,9 @@ ETEXI
{
.name = "screendump",
.args_type = "filename:F",
- .handler = do_screen_dump,
.params = "filename",
.help = "save screen into PPM image 'filename'",
+ .mhandler.cmd = do_screen_dump,
},
STEXI
@@ -200,9 +200,9 @@ ETEXI
{
.name = "logfile",
.args_type = "filename:F",
- .handler = do_logfile,
.params = "filename",
.help = "output logs to 'filename'",
+ .mhandler.cmd = do_logfile,
},
STEXI
@@ -213,9 +213,9 @@ ETEXI
{
.name = "log",
.args_type = "items:s",
- .handler = do_log,
.params = "item1[,...]",
.help = "activate logging of the specified items to '/tmp/qemu.log'",
+ .mhandler.cmd = do_log,
},
STEXI
@@ -226,9 +226,9 @@ ETEXI
{
.name = "savevm",
.args_type = "name:s?",
- .handler = do_savevm,
.params = "[tag|id]",
.help = "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
+ .mhandler.cmd = do_savevm,
},
STEXI
@@ -242,9 +242,9 @@ ETEXI
{
.name = "loadvm",
.args_type = "name:s",
- .handler = do_loadvm,
.params = "tag|id",
.help = "restore a VM snapshot from its tag or id",
+ .mhandler.cmd = do_loadvm,
},
STEXI
@@ -256,9 +256,9 @@ ETEXI
{
.name = "delvm",
.args_type = "name:s",
- .handler = do_delvm,
.params = "tag|id",
.help = "delete a VM snapshot from its tag or id",
+ .mhandler.cmd = do_delvm,
},
STEXI
@@ -269,9 +269,9 @@ ETEXI
{
.name = "singlestep",
.args_type = "option:s?",
- .handler = do_singlestep,
.params = "[on|off]",
.help = "run emulation in singlestep mode or switch to normal mode",
+ .mhandler.cmd = do_singlestep,
},
STEXI
@@ -283,9 +283,9 @@ ETEXI
{
.name = "stop",
.args_type = "",
- .handler = do_stop,
.params = "",
.help = "stop emulation",
+ .mhandler.cmd = do_stop,
},
STEXI
@@ -296,9 +296,9 @@ ETEXI
{
.name = "c|cont",
.args_type = "",
- .handler = do_cont,
.params = "",
.help = "resume emulation",
+ .mhandler.cmd = do_cont,
},
STEXI
@@ -309,9 +309,9 @@ ETEXI
{
.name = "gdbserver",
.args_type = "device:s?",
- .handler = do_gdbserver,
.params = "[device]",
.help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
+ .mhandler.cmd = do_gdbserver,
},
STEXI
@@ -322,9 +322,9 @@ ETEXI
{
.name = "x",
.args_type = "fmt:/,addr:l",
- .handler = do_memory_dump,
.params = "/fmt addr",
.help = "virtual memory dump starting at 'addr'",
+ .mhandler.cmd = do_memory_dump,
},
STEXI
@@ -335,9 +335,9 @@ ETEXI
{
.name = "xp",
.args_type = "fmt:/,addr:l",
- .handler = do_physical_memory_dump,
.params = "/fmt addr",
.help = "physical memory dump starting at 'addr'",
+ .mhandler.cmd = do_physical_memory_dump,
},
STEXI
@@ -401,9 +401,9 @@ ETEXI
{
.name = "p|print",
.args_type = "fmt:/,val:l",
- .handler = do_print,
.params = "/fmt expr",
.help = "print expression value (use $reg for CPU register access)",
+ .mhandler.cmd = do_print,
},
STEXI
@@ -416,9 +416,9 @@ ETEXI
{
.name = "i",
.args_type = "fmt:/,addr:i,index:i.",
- .handler = do_ioport_read,
.params = "/fmt addr",
.help = "I/O port read",
+ .mhandler.cmd = do_ioport_read,
},
STEXI
@@ -428,9 +428,9 @@ ETEXI
{
.name = "o",
.args_type = "fmt:/,addr:i,val:i",
- .handler = do_ioport_write,
.params = "/fmt addr value",
.help = "I/O port write",
+ .mhandler.cmd = do_ioport_write,
},
STEXI
@@ -440,9 +440,9 @@ ETEXI
{
.name = "sendkey",
.args_type = "string:s,hold_time:i?",
- .handler = do_sendkey,
.params = "keys [hold_ms]",
.help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
+ .mhandler.cmd = do_sendkey,
},
STEXI
@@ -462,9 +462,9 @@ ETEXI
{
.name = "system_reset",
.args_type = "",
- .handler = do_system_reset,
.params = "",
.help = "reset the system",
+ .mhandler.cmd = do_system_reset,
},
STEXI
@@ -476,9 +476,9 @@ ETEXI
{
.name = "system_powerdown",
.args_type = "",
- .handler = do_system_powerdown,
.params = "",
.help = "send system power down event",
+ .mhandler.cmd = do_system_powerdown,
},
STEXI
@@ -490,9 +490,9 @@ ETEXI
{
.name = "sum",
.args_type = "start:i,size:i",
- .handler = do_sum,
.params = "addr size",
.help = "compute the checksum of a memory region",
+ .mhandler.cmd = do_sum,
},
STEXI
@@ -504,9 +504,9 @@ ETEXI
{
.name = "usb_add",
.args_type = "devname:s",
- .handler = do_usb_add,
.params = "device",
.help = "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
+ .mhandler.cmd = do_usb_add,
},
STEXI
@@ -519,9 +519,9 @@ ETEXI
{
.name = "usb_del",
.args_type = "devname:s",
- .handler = do_usb_del,
.params = "device",
.help = "remove USB device 'bus.addr'",
+ .mhandler.cmd = do_usb_del,
},
STEXI
@@ -535,9 +535,9 @@ ETEXI
{
.name = "device_add",
.args_type = "config:s",
- .handler = do_device_add,
.params = "device",
.help = "add device, like -device on the command line",
+ .mhandler.cmd = do_device_add,
},
STEXI
@@ -549,9 +549,9 @@ ETEXI
{
.name = "device_del",
.args_type = "id:s",
- .handler = do_device_del,
.params = "device",
.help = "remove device",
+ .mhandler.cmd = do_device_del,
},
STEXI
@@ -563,9 +563,9 @@ ETEXI
{
.name = "cpu",
.args_type = "index:i",
- .handler = do_cpu_set,
.params = "index",
.help = "set the default CPU",
+ .mhandler.cmd = do_cpu_set,
},
STEXI
@@ -575,9 +575,9 @@ ETEXI
{
.name = "mouse_move",
.args_type = "dx_str:s,dy_str:s,dz_str:s?",
- .handler = do_mouse_move,
.params = "dx dy [dz]",
.help = "send mouse move events",
+ .mhandler.cmd = do_mouse_move,
},
STEXI
@@ -589,9 +589,9 @@ ETEXI
{
.name = "mouse_button",
.args_type = "button_state:i",
- .handler = do_mouse_button,
.params = "state",
.help = "change mouse button state (1=L, 2=M, 4=R)",
+ .mhandler.cmd = do_mouse_button,
},
STEXI
@@ -602,9 +602,9 @@ ETEXI
{
.name = "mouse_set",
.args_type = "index:i",
- .handler = do_mouse_set,
.params = "index",
.help = "set which mouse device receives events",
+ .mhandler.cmd = do_mouse_set,
},
STEXI
@@ -620,9 +620,9 @@ ETEXI
{
.name = "wavcapture",
.args_type = "path:F,freq:i?,bits:i?,nchannels:i?",
- .handler = do_wav_capture,
.params = "path [frequency [bits [channels]]]",
.help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
+ .mhandler.cmd = do_wav_capture,
},
#endif
STEXI
@@ -642,9 +642,9 @@ ETEXI
{
.name = "stopcapture",
.args_type = "n:i",
- .handler = do_stop_capture,
.params = "capture index",
.help = "stop capture",
+ .mhandler.cmd = do_stop_capture,
},
#endif
STEXI
@@ -658,9 +658,9 @@ ETEXI
{
.name = "memsave",
.args_type = "val:l,size:i,filename:s",
- .handler = do_memory_save,
.params = "addr size file",
.help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
+ .mhandler.cmd = do_memory_save,
},
STEXI
@@ -671,9 +671,9 @@ ETEXI
{
.name = "pmemsave",
.args_type = "val:l,size:i,filename:s",
- .handler = do_physical_memory_save,
.params = "addr size file",
.help = "save to disk physical memory dump starting at 'addr' of size 'size'",
+ .mhandler.cmd = do_physical_memory_save,
},
STEXI
@@ -684,9 +684,9 @@ ETEXI
{
.name = "boot_set",
.args_type = "bootdevice:s",
- .handler = do_boot_set,
.params = "bootdevice",
.help = "define new values for the boot device list",
+ .mhandler.cmd = do_boot_set,
},
STEXI
@@ -703,9 +703,9 @@ ETEXI
{
.name = "nmi",
.args_type = "cpu_index:i",
- .handler = do_inject_nmi,
.params = "cpu",
.help = "inject an NMI on the given CPU",
+ .mhandler.cmd = do_inject_nmi,
},
#endif
STEXI
@@ -716,9 +716,9 @@ ETEXI
{
.name = "migrate",
.args_type = "detach:-d,uri:s",
- .handler = do_migrate,
.params = "[-d] uri",
.help = "migrate to URI (using -d to not wait for completion)",
+ .mhandler.cmd = do_migrate,
},
STEXI
@@ -729,9 +729,9 @@ ETEXI
{
.name = "migrate_cancel",
.args_type = "",
- .handler = do_migrate_cancel,
.params = "",
.help = "cancel the current VM migration",
+ .mhandler.cmd = do_migrate_cancel,
},
STEXI
@@ -742,9 +742,9 @@ ETEXI
{
.name = "migrate_set_speed",
.args_type = "value:s",
- .handler = do_migrate_set_speed,
.params = "value",
.help = "set maximum speed (in bytes) for migrations",
+ .mhandler.cmd = do_migrate_set_speed,
},
STEXI
@@ -755,9 +755,9 @@ ETEXI
{
.name = "migrate_set_downtime",
.args_type = "value:s",
- .handler = do_migrate_set_downtime,
.params = "value",
.help = "set maximum tolerated downtime (in seconds) for migrations",
+ .mhandler.cmd = do_migrate_set_downtime,
},
STEXI
@@ -769,13 +769,13 @@ ETEXI
{
.name = "drive_add",
.args_type = "pci_addr:s,opts:s",
- .handler = drive_hot_add,
.params = "[[<domain>:]<bus>:]<slot>\n"
"[file=file][,if=type][,bus=n]\n"
"[,unit=m][,media=d][index=i]\n"
"[,cyls=c,heads=h,secs=s[,trans=t]]\n"
"[snapshot=on|off][,cache=on|off]",
.help = "add drive to PCI storage controller",
+ .mhandler.cmd = drive_hot_add,
},
#endif
@@ -788,9 +788,9 @@ ETEXI
{
.name = "pci_add",
.args_type = "pci_addr:s,type:s,opts:s?",
- .handler = pci_device_hot_add,
.params = "auto|[[<domain>:]<bus>:]<slot> nic|storage|host [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]... [host=02:00.0[,name=string][,dma=none]",
.help = "hot-add PCI device",
+ .mhandler.cmd = pci_device_hot_add,
},
#endif
@@ -803,9 +803,9 @@ ETEXI
{
.name = "pci_del",
.args_type = "pci_addr:s",
- .handler = do_pci_device_hot_remove,
.params = "[[<domain>:]<bus>:]<slot>",
.help = "hot remove PCI device",
+ .mhandler.cmd = do_pci_device_hot_remove,
},
#endif
@@ -817,9 +817,9 @@ ETEXI
{
.name = "host_net_add",
.args_type = "device:s,opts:s?",
- .handler = net_host_device_add,
.params = "tap|user|socket|vde|dump [options]",
.help = "add host VLAN client",
+ .mhandler.cmd = net_host_device_add,
},
STEXI
@@ -830,9 +830,9 @@ ETEXI
{
.name = "host_net_remove",
.args_type = "vlan_id:i,device:s",
- .handler = net_host_device_remove,
.params = "vlan_id name",
.help = "remove host VLAN client",
+ .mhandler.cmd = net_host_device_remove,
},
STEXI
@@ -844,17 +844,17 @@ ETEXI
{
.name = "hostfwd_add",
.args_type = "arg1:s,arg2:s?,arg3:s?",
- .handler = net_slirp_hostfwd_add,
.params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
.help = "redirect TCP or UDP connections from host to guest (requires -net user)",
+ .mhandler.cmd = net_slirp_hostfwd_add,
},
{
.name = "hostfwd_remove",
.args_type = "arg1:s,arg2:s?,arg3:s?",
- .handler = net_slirp_hostfwd_remove,
.params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
.help = "remove host-to-guest TCP or UDP redirection",
+ .mhandler.cmd = net_slirp_hostfwd_remove,
},
#endif
@@ -866,9 +866,9 @@ ETEXI
{
.name = "balloon",
.args_type = "value:i",
- .handler = do_balloon,
.params = "target",
.help = "request VM to change it's memory allocation (in MB)",
+ .mhandler.cmd = do_balloon,
},
STEXI
@@ -879,9 +879,9 @@ ETEXI
{
.name = "set_link",
.args_type = "name:s,up_or_down:s",
- .handler = do_set_link,
.params = "name up|down",
.help = "change the link status of a network adapter",
+ .mhandler.cmd = do_set_link,
},
STEXI
@@ -892,9 +892,9 @@ ETEXI
{
.name = "watchdog_action",
.args_type = "action:s",
- .handler = do_watchdog_action,
.params = "[reset|shutdown|poweroff|pause|debug|none]",
.help = "change watchdog action",
+ .mhandler.cmd = do_watchdog_action,
},
STEXI
@@ -905,9 +905,9 @@ ETEXI
{
.name = "acl_show",
.args_type = "aclname:s",
- .handler = do_acl_show,
.params = "aclname",
.help = "list rules in the access control list",
+ .mhandler.cmd = do_acl_show,
},
STEXI
@@ -921,9 +921,9 @@ ETEXI
{
.name = "acl_policy",
.args_type = "aclname:s,policy:s",
- .handler = do_acl_policy,
.params = "aclname allow|deny",
.help = "set default access control list policy",
+ .mhandler.cmd = do_acl_policy,
},
STEXI
@@ -936,9 +936,9 @@ ETEXI
{
.name = "acl_add",
.args_type = "aclname:s,match:s,policy:s,index:i?",
- .handler = do_acl_add,
.params = "aclname match allow|deny [index]",
.help = "add a match rule to the access control list",
+ .mhandler.cmd = do_acl_add,
},
STEXI
@@ -954,9 +954,9 @@ ETEXI
{
.name = "acl_remove",
.args_type = "aclname:s,match:s",
- .handler = do_acl_remove,
.params = "aclname match",
.help = "remove a match rule from the access control list",
+ .mhandler.cmd = do_acl_remove,
},
STEXI
@@ -967,9 +967,9 @@ ETEXI
{
.name = "acl_reset",
.args_type = "aclname:s",
- .handler = do_acl_reset,
.params = "aclname",
.help = "reset the access control list",
+ .mhandler.cmd = do_acl_reset,
},
STEXI
@@ -983,9 +983,9 @@ ETEXI
{
.name = "mce",
.args_type = "cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
- .handler = do_inject_mce,
.params = "cpu bank status mcgstatus addr misc",
.help = "inject a MCE on the given CPU",
+ .mhandler.cmd = do_inject_mce,
},
#endif
@@ -997,9 +997,9 @@ ETEXI
{
.name = "getfd",
.args_type = "fdname:s",
- .handler = do_getfd,
.params = "getfd name",
.help = "receive a file descriptor via SCM rights and assign it a name",
+ .mhandler.cmd = do_getfd,
},
STEXI
@@ -1012,9 +1012,9 @@ ETEXI
{
.name = "closefd",
.args_type = "fdname:s",
- .handler = do_closefd,
.params = "closefd name",
.help = "close a file descriptor previously passed via SCM rights",
+ .mhandler.cmd = do_closefd,
},
STEXI
@@ -1024,8 +1024,14 @@ Close the file descriptor previously assigned to @var{fdname} using the
used by another monitor command.
ETEXI
- { "cpu_set", "is", do_cpu_set_nr,
- "cpu [online|offline]", "change cpu state" },
+ {
+ .name = "cpu_set",
+ .args_type = "cpu:i,state:s",
+ .params = "cpu [online|offline]",
+ .help = "change cpu state",
+ .mhandler.cmd = do_cpu_set_nr,
+ },
+
STEXI
@item cpu_set @var{cpu} [online|offline]
Set CPU @var{cpu} online or offline.