blob: 70639f656aef6a5125a039014e979cb691bed382 [file] [log] [blame]
Pavel Butsykinda76ee72015-09-10 18:38:58 +03001HXCOMM Use DEFHEADING() to define headings in both help text and texi
2HXCOMM Text between STEXI and ETEXI are copied to texi version and
3HXCOMM discarded from C version
4HXCOMM DEF(command, args, callback, arg_string, help) is used to construct
5HXCOMM monitor info commands
6HXCOMM HXCOMM can be used for comments, discarded from both texi and C
7
8STEXI
9@table @option
Pavel Butsykin2cd8af22015-09-10 18:39:01 +030010@item info @var{subcommand}
11@findex info
12Show various information about the system state.
13@table @option
Pavel Butsykinda76ee72015-09-10 18:38:58 +030014ETEXI
15
16 {
17 .name = "version",
18 .args_type = "",
19 .params = "",
20 .help = "show the version of QEMU",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040021 .cmd = hmp_info_version,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +010022 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +030023 },
24
25STEXI
26@item info version
Markus Armbruster1b591702017-10-02 15:45:38 +020027@findex info version
Pavel Butsykinda76ee72015-09-10 18:38:58 +030028Show the version of QEMU.
29ETEXI
30
31 {
32 .name = "network",
33 .args_type = "",
34 .params = "",
35 .help = "show the network state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040036 .cmd = hmp_info_network,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030037 },
38
39STEXI
40@item info network
Markus Armbruster1b591702017-10-02 15:45:38 +020041@findex info network
Pavel Butsykinda76ee72015-09-10 18:38:58 +030042Show the network state.
43ETEXI
44
45 {
46 .name = "chardev",
47 .args_type = "",
48 .params = "",
49 .help = "show the character devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040050 .cmd = hmp_info_chardev,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +010051 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +030052 },
53
54STEXI
55@item info chardev
Markus Armbruster1b591702017-10-02 15:45:38 +020056@findex info chardev
Pavel Butsykinda76ee72015-09-10 18:38:58 +030057Show the character devices.
58ETEXI
59
60 {
61 .name = "block",
62 .args_type = "nodes:-n,verbose:-v,device:B?",
63 .params = "[-n] [-v] [device]",
64 .help = "show info of one block device or all block devices "
65 "(-n: show named nodes; -v: show details)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040066 .cmd = hmp_info_block,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030067 },
68
69STEXI
70@item info block
Markus Armbruster1b591702017-10-02 15:45:38 +020071@findex info block
Pavel Butsykinda76ee72015-09-10 18:38:58 +030072Show info of one block device or all block devices.
73ETEXI
74
75 {
76 .name = "blockstats",
77 .args_type = "",
78 .params = "",
79 .help = "show block device statistics",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040080 .cmd = hmp_info_blockstats,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030081 },
82
83STEXI
84@item info blockstats
Markus Armbruster1b591702017-10-02 15:45:38 +020085@findex info blockstats
Pavel Butsykinda76ee72015-09-10 18:38:58 +030086Show block device statistics.
87ETEXI
88
89 {
90 .name = "block-jobs",
91 .args_type = "",
92 .params = "",
93 .help = "show progress of ongoing block device operations",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040094 .cmd = hmp_info_block_jobs,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030095 },
96
97STEXI
98@item info block-jobs
Markus Armbruster1b591702017-10-02 15:45:38 +020099@findex info block-jobs
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300100Show progress of ongoing block device operations.
101ETEXI
102
103 {
104 .name = "registers",
Suraj Jitindar Singh18f08282017-06-08 15:41:16 +1000105 .args_type = "cpustate_all:-a",
106 .params = "[-a]",
107 .help = "show the cpu registers (-a: all - show register info for all cpus)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400108 .cmd = hmp_info_registers,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300109 },
110
111STEXI
112@item info registers
Markus Armbruster1b591702017-10-02 15:45:38 +0200113@findex info registers
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300114Show the cpu registers.
115ETEXI
116
Pavel Butsykin1f871d42015-09-22 16:18:18 +0300117#if defined(TARGET_I386)
118 {
119 .name = "lapic",
Yi Wang1bef2282017-07-26 02:18:37 -0400120 .args_type = "apic-id:i?",
121 .params = "[apic-id]",
122 .help = "show local apic state (apic-id: local apic to read, default is which of current CPU)",
123
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400124 .cmd = hmp_info_local_apic,
Pavel Butsykin1f871d42015-09-22 16:18:18 +0300125 },
126#endif
127
128STEXI
129@item info lapic
Markus Armbruster1b591702017-10-02 15:45:38 +0200130@findex info lapic
Pavel Butsykin1f871d42015-09-22 16:18:18 +0300131Show local APIC state
132ETEXI
133
Pavel Butsykind665d692015-09-22 16:18:20 +0300134#if defined(TARGET_I386)
135 {
136 .name = "ioapic",
137 .args_type = "",
138 .params = "",
139 .help = "show io apic state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400140 .cmd = hmp_info_io_apic,
Pavel Butsykind665d692015-09-22 16:18:20 +0300141 },
142#endif
143
144STEXI
145@item info ioapic
Markus Armbruster1b591702017-10-02 15:45:38 +0200146@findex info ioapic
Pavel Butsykind665d692015-09-22 16:18:20 +0300147Show io APIC state
148ETEXI
149
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300150 {
151 .name = "cpus",
152 .args_type = "",
153 .params = "",
154 .help = "show infos for each CPU",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400155 .cmd = hmp_info_cpus,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300156 },
157
158STEXI
159@item info cpus
Markus Armbruster1b591702017-10-02 15:45:38 +0200160@findex info cpus
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300161Show infos for each CPU.
162ETEXI
163
164 {
165 .name = "history",
166 .args_type = "",
167 .params = "",
168 .help = "show the command line history",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400169 .cmd = hmp_info_history,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100170 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300171 },
172
173STEXI
174@item info history
Markus Armbruster1b591702017-10-02 15:45:38 +0200175@findex info history
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300176Show the command line history.
177ETEXI
178
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300179 {
180 .name = "irq",
181 .args_type = "",
182 .params = "",
183 .help = "show the interrupts statistics (if available)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400184 .cmd = hmp_info_irq,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300185 },
186
187STEXI
188@item info irq
Markus Armbruster1b591702017-10-02 15:45:38 +0200189@findex info irq
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300190Show the interrupts statistics (if available).
191ETEXI
192
193 {
194 .name = "pic",
195 .args_type = "",
196 .params = "",
Hervé Poussineau254316f2016-09-26 22:23:28 +0200197 .help = "show PIC state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400198 .cmd = hmp_info_pic,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300199 },
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300200
201STEXI
202@item info pic
Markus Armbruster1b591702017-10-02 15:45:38 +0200203@findex info pic
Peter Xu0cda9d82017-12-29 15:31:00 +0800204Show PIC state.
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300205ETEXI
206
Paolo Bonziniabadcbc2015-09-18 17:18:29 +0200207 {
208 .name = "pci",
209 .args_type = "",
210 .params = "",
211 .help = "show PCI info",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400212 .cmd = hmp_info_pci,
Paolo Bonziniabadcbc2015-09-18 17:18:29 +0200213 },
214
215STEXI
216@item info pci
Markus Armbruster1b591702017-10-02 15:45:38 +0200217@findex info pci
Paolo Bonziniabadcbc2015-09-18 17:18:29 +0200218Show PCI information.
219ETEXI
220
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300221#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
Laurent Vivier2097dca2018-01-18 20:38:46 +0100222 defined(TARGET_PPC) || defined(TARGET_XTENSA) || defined(TARGET_M68K)
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300223 {
224 .name = "tlb",
225 .args_type = "",
226 .params = "",
227 .help = "show virtual to physical memory mappings",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400228 .cmd = hmp_info_tlb,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300229 },
230#endif
231
232STEXI
233@item info tlb
Markus Armbruster1b591702017-10-02 15:45:38 +0200234@findex info tlb
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300235Show virtual to physical memory mappings.
236ETEXI
237
238#if defined(TARGET_I386)
239 {
240 .name = "mem",
241 .args_type = "",
242 .params = "",
243 .help = "show the active virtual memory mappings",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400244 .cmd = hmp_info_mem,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300245 },
246#endif
247
248STEXI
249@item info mem
Markus Armbruster1b591702017-10-02 15:45:38 +0200250@findex info mem
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300251Show the active virtual memory mappings.
252ETEXI
253
254 {
255 .name = "mtree",
Alexey Kardashevskiyfc051ae2018-06-04 13:25:11 +1000256 .args_type = "flatview:-f,dispatch_tree:-d,owner:-o",
257 .params = "[-f][-d][-o]",
Alexey Kardashevskiy5e8fd942017-09-21 18:51:06 +1000258 .help = "show memory tree (-f: dump flat view for address spaces;"
Alexey Kardashevskiyfc051ae2018-06-04 13:25:11 +1000259 "-d: dump dispatch tree, valid with -f only);"
260 "-o: dump region owners/parents",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400261 .cmd = hmp_info_mtree,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300262 },
263
264STEXI
265@item info mtree
Markus Armbruster1b591702017-10-02 15:45:38 +0200266@findex info mtree
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300267Show memory tree.
268ETEXI
269
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200270#if defined(CONFIG_TCG)
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300271 {
272 .name = "jit",
273 .args_type = "",
274 .params = "",
275 .help = "show dynamic compiler info",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400276 .cmd = hmp_info_jit,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300277 },
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200278#endif
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300279
280STEXI
281@item info jit
Markus Armbruster1b591702017-10-02 15:45:38 +0200282@findex info jit
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300283Show dynamic compiler info.
284ETEXI
285
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200286#if defined(CONFIG_TCG)
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300287 {
288 .name = "opcount",
289 .args_type = "",
290 .params = "",
291 .help = "show dynamic compiler opcode counters",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400292 .cmd = hmp_info_opcount,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300293 },
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200294#endif
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300295
296STEXI
297@item info opcount
Markus Armbruster1b591702017-10-02 15:45:38 +0200298@findex info opcount
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300299Show dynamic compiler opcode counters
300ETEXI
301
302 {
303 .name = "kvm",
304 .args_type = "",
305 .params = "",
306 .help = "show KVM information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400307 .cmd = hmp_info_kvm,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300308 },
309
310STEXI
311@item info kvm
Markus Armbruster1b591702017-10-02 15:45:38 +0200312@findex info kvm
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300313Show KVM information.
314ETEXI
315
316 {
317 .name = "numa",
318 .args_type = "",
319 .params = "",
320 .help = "show NUMA information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400321 .cmd = hmp_info_numa,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300322 },
323
324STEXI
325@item info numa
Markus Armbruster1b591702017-10-02 15:45:38 +0200326@findex info numa
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300327Show NUMA information.
328ETEXI
329
330 {
331 .name = "usb",
332 .args_type = "",
333 .params = "",
334 .help = "show guest USB devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400335 .cmd = hmp_info_usb,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300336 },
337
338STEXI
339@item info usb
Markus Armbruster1b591702017-10-02 15:45:38 +0200340@findex info usb
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300341Show guest USB devices.
342ETEXI
343
344 {
345 .name = "usbhost",
346 .args_type = "",
347 .params = "",
348 .help = "show host USB devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400349 .cmd = hmp_info_usbhost,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300350 },
351
352STEXI
353@item info usbhost
Markus Armbruster1b591702017-10-02 15:45:38 +0200354@findex info usbhost
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300355Show host USB devices.
356ETEXI
357
358 {
359 .name = "profile",
360 .args_type = "",
361 .params = "",
362 .help = "show profiling information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400363 .cmd = hmp_info_profile,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300364 },
365
366STEXI
367@item info profile
Markus Armbruster1b591702017-10-02 15:45:38 +0200368@findex info profile
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300369Show profiling information.
370ETEXI
371
372 {
373 .name = "capture",
374 .args_type = "",
375 .params = "",
376 .help = "show capture information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400377 .cmd = hmp_info_capture,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300378 },
379
380STEXI
381@item info capture
Markus Armbruster1b591702017-10-02 15:45:38 +0200382@findex info capture
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300383Show capture information.
384ETEXI
385
386 {
387 .name = "snapshots",
388 .args_type = "",
389 .params = "",
390 .help = "show the currently saved VM snapshots",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400391 .cmd = hmp_info_snapshots,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300392 },
393
394STEXI
395@item info snapshots
Markus Armbruster1b591702017-10-02 15:45:38 +0200396@findex info snapshots
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300397Show the currently saved VM snapshots.
398ETEXI
399
400 {
401 .name = "status",
402 .args_type = "",
403 .params = "",
404 .help = "show the current VM status (running|paused)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400405 .cmd = hmp_info_status,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100406 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300407 },
408
409STEXI
410@item info status
Markus Armbruster1b591702017-10-02 15:45:38 +0200411@findex info status
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300412Show the current VM status (running|paused).
413ETEXI
414
415 {
416 .name = "mice",
417 .args_type = "",
418 .params = "",
419 .help = "show which guest mouse is receiving events",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400420 .cmd = hmp_info_mice,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300421 },
422
423STEXI
424@item info mice
Markus Armbruster1b591702017-10-02 15:45:38 +0200425@findex info mice
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300426Show which guest mouse is receiving events.
427ETEXI
428
Marc-André Lureau05eb4a22018-07-03 17:56:47 +0200429#if defined(CONFIG_VNC)
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300430 {
431 .name = "vnc",
432 .args_type = "",
433 .params = "",
434 .help = "show the vnc server status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400435 .cmd = hmp_info_vnc,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300436 },
Marc-André Lureau05eb4a22018-07-03 17:56:47 +0200437#endif
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300438
439STEXI
440@item info vnc
Markus Armbruster1b591702017-10-02 15:45:38 +0200441@findex info vnc
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300442Show the vnc server status.
443ETEXI
444
445#if defined(CONFIG_SPICE)
446 {
447 .name = "spice",
448 .args_type = "",
449 .params = "",
450 .help = "show the spice server status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400451 .cmd = hmp_info_spice,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300452 },
453#endif
454
455STEXI
456@item info spice
Markus Armbruster1b591702017-10-02 15:45:38 +0200457@findex info spice
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300458Show the spice server status.
459ETEXI
460
461 {
462 .name = "name",
463 .args_type = "",
464 .params = "",
465 .help = "show the current VM name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400466 .cmd = hmp_info_name,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100467 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300468 },
469
470STEXI
471@item info name
Markus Armbruster1b591702017-10-02 15:45:38 +0200472@findex info name
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300473Show the current VM name.
474ETEXI
475
476 {
477 .name = "uuid",
478 .args_type = "",
479 .params = "",
480 .help = "show the current VM UUID",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400481 .cmd = hmp_info_uuid,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100482 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300483 },
484
485STEXI
486@item info uuid
Markus Armbruster1b591702017-10-02 15:45:38 +0200487@findex info uuid
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300488Show the current VM UUID.
489ETEXI
490
491 {
492 .name = "cpustats",
493 .args_type = "",
494 .params = "",
495 .help = "show CPU statistics",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400496 .cmd = hmp_info_cpustats,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300497 },
498
499STEXI
500@item info cpustats
Markus Armbruster1b591702017-10-02 15:45:38 +0200501@findex info cpustats
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300502Show CPU statistics.
503ETEXI
504
505#if defined(CONFIG_SLIRP)
506 {
507 .name = "usernet",
508 .args_type = "",
509 .params = "",
510 .help = "show user network stack connection states",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400511 .cmd = hmp_info_usernet,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300512 },
513#endif
514
515STEXI
516@item info usernet
Markus Armbruster1b591702017-10-02 15:45:38 +0200517@findex info usernet
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300518Show user network stack connection states.
519ETEXI
520
521 {
522 .name = "migrate",
523 .args_type = "",
524 .params = "",
525 .help = "show migration status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400526 .cmd = hmp_info_migrate,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300527 },
528
529STEXI
530@item info migrate
Markus Armbruster1b591702017-10-02 15:45:38 +0200531@findex info migrate
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300532Show migration status.
533ETEXI
534
535 {
536 .name = "migrate_capabilities",
537 .args_type = "",
538 .params = "",
539 .help = "show current migration capabilities",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400540 .cmd = hmp_info_migrate_capabilities,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300541 },
542
543STEXI
544@item info migrate_capabilities
Markus Armbruster1b591702017-10-02 15:45:38 +0200545@findex info migrate_capabilities
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300546Show current migration capabilities.
547ETEXI
548
549 {
550 .name = "migrate_parameters",
551 .args_type = "",
552 .params = "",
553 .help = "show current migration parameters",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400554 .cmd = hmp_info_migrate_parameters,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300555 },
556
557STEXI
558@item info migrate_parameters
Markus Armbruster1b591702017-10-02 15:45:38 +0200559@findex info migrate_parameters
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300560Show current migration parameters.
561ETEXI
562
563 {
564 .name = "migrate_cache_size",
565 .args_type = "",
566 .params = "",
567 .help = "show current migration xbzrle cache size",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400568 .cmd = hmp_info_migrate_cache_size,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300569 },
570
571STEXI
572@item info migrate_cache_size
Markus Armbruster1b591702017-10-02 15:45:38 +0200573@findex info migrate_cache_size
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300574Show current migration xbzrle cache size.
575ETEXI
576
577 {
578 .name = "balloon",
579 .args_type = "",
580 .params = "",
581 .help = "show balloon information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400582 .cmd = hmp_info_balloon,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300583 },
584
585STEXI
586@item info balloon
Markus Armbruster1b591702017-10-02 15:45:38 +0200587@findex info balloon
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300588Show balloon information.
589ETEXI
590
591 {
592 .name = "qtree",
593 .args_type = "",
594 .params = "",
595 .help = "show device tree",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400596 .cmd = hmp_info_qtree,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300597 },
598
599STEXI
600@item info qtree
Markus Armbruster1b591702017-10-02 15:45:38 +0200601@findex info qtree
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300602Show device tree.
603ETEXI
604
605 {
606 .name = "qdm",
607 .args_type = "",
608 .params = "",
609 .help = "show qdev device model list",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400610 .cmd = hmp_info_qdm,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300611 },
612
613STEXI
614@item info qdm
Markus Armbruster1b591702017-10-02 15:45:38 +0200615@findex info qdm
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300616Show qdev device model list.
617ETEXI
618
619 {
620 .name = "qom-tree",
621 .args_type = "path:s?",
622 .params = "[path]",
623 .help = "show QOM composition tree",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400624 .cmd = hmp_info_qom_tree,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100625 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300626 },
627
628STEXI
629@item info qom-tree
Markus Armbruster1b591702017-10-02 15:45:38 +0200630@findex info qom-tree
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300631Show QOM composition tree.
632ETEXI
633
634 {
635 .name = "roms",
636 .args_type = "",
637 .params = "",
638 .help = "show roms",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400639 .cmd = hmp_info_roms,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300640 },
641
642STEXI
643@item info roms
Markus Armbruster1b591702017-10-02 15:45:38 +0200644@findex info roms
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300645Show roms.
646ETEXI
647
648 {
649 .name = "trace-events",
Lluís Vilanova77e2b172016-07-11 12:53:57 +0200650 .args_type = "name:s?,vcpu:i?",
651 .params = "[name] [vcpu]",
Lluís Vilanovabd712112016-07-11 12:53:51 +0200652 .help = "show available trace-events & their state "
Lluís Vilanova77e2b172016-07-11 12:53:57 +0200653 "(name: event name pattern; vcpu: vCPU to query, default is any)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400654 .cmd = hmp_info_trace_events,
Lluís Vilanovabd712112016-07-11 12:53:51 +0200655 .command_completion = info_trace_events_completion,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300656 },
657
658STEXI
659@item info trace-events
Markus Armbruster1b591702017-10-02 15:45:38 +0200660@findex info trace-events
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300661Show available trace-events & their state.
662ETEXI
663
664 {
665 .name = "tpm",
666 .args_type = "",
667 .params = "",
668 .help = "show the TPM device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400669 .cmd = hmp_info_tpm,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300670 },
671
672STEXI
673@item info tpm
Markus Armbruster1b591702017-10-02 15:45:38 +0200674@findex info tpm
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300675Show the TPM device.
676ETEXI
677
678 {
679 .name = "memdev",
680 .args_type = "",
681 .params = "",
682 .help = "show memory backends",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400683 .cmd = hmp_info_memdev,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100684 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300685 },
686
687STEXI
688@item info memdev
Markus Armbruster1b591702017-10-02 15:45:38 +0200689@findex info memdev
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300690Show memory backends
691ETEXI
692
693 {
694 .name = "memory-devices",
695 .args_type = "",
696 .params = "",
697 .help = "show memory devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400698 .cmd = hmp_info_memory_devices,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300699 },
700
701STEXI
702@item info memory-devices
Markus Armbruster1b591702017-10-02 15:45:38 +0200703@findex info memory-devices
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300704Show memory devices.
705ETEXI
706
707 {
708 .name = "iothreads",
709 .args_type = "",
710 .params = "",
711 .help = "show iothreads",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400712 .cmd = hmp_info_iothreads,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100713 .flags = "p",
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300714 },
715
716STEXI
717@item info iothreads
Markus Armbruster1b591702017-10-02 15:45:38 +0200718@findex info iothreads
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300719Show iothread's identifiers.
720ETEXI
721
722 {
723 .name = "rocker",
724 .args_type = "name:s",
725 .params = "name",
726 .help = "Show rocker switch",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400727 .cmd = hmp_rocker,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300728 },
729
730STEXI
731@item info rocker @var{name}
Markus Armbruster1b591702017-10-02 15:45:38 +0200732@findex info rocker
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300733Show rocker switch.
734ETEXI
735
736 {
737 .name = "rocker-ports",
738 .args_type = "name:s",
739 .params = "name",
740 .help = "Show rocker ports",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400741 .cmd = hmp_rocker_ports,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300742 },
743
744STEXI
Markus Armbrusterc325ccd2017-10-02 15:45:36 +0200745@item info rocker-ports @var{name}-ports
Markus Armbruster1b591702017-10-02 15:45:38 +0200746@findex info rocker-ports
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300747Show rocker ports.
748ETEXI
749
750 {
751 .name = "rocker-of-dpa-flows",
752 .args_type = "name:s,tbl_id:i?",
753 .params = "name [tbl_id]",
754 .help = "Show rocker OF-DPA flow tables",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400755 .cmd = hmp_rocker_of_dpa_flows,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300756 },
757
758STEXI
Markus Armbrusterc325ccd2017-10-02 15:45:36 +0200759@item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
Markus Armbruster1b591702017-10-02 15:45:38 +0200760@findex info rocker-of-dpa-flows
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300761Show rocker OF-DPA flow tables.
762ETEXI
763
764 {
765 .name = "rocker-of-dpa-groups",
766 .args_type = "name:s,type:i?",
767 .params = "name [type]",
768 .help = "Show rocker OF-DPA groups",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400769 .cmd = hmp_rocker_of_dpa_groups,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300770 },
771
772STEXI
773@item info rocker-of-dpa-groups @var{name} [@var{type}]
Markus Armbruster1b591702017-10-02 15:45:38 +0200774@findex info rocker-of-dpa-groups
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300775Show rocker OF-DPA groups.
776ETEXI
777
778#if defined(TARGET_S390X)
779 {
780 .name = "skeys",
781 .args_type = "addr:l",
782 .params = "address",
783 .help = "Display the value of a storage key",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400784 .cmd = hmp_info_skeys,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300785 },
786#endif
787
788STEXI
789@item info skeys @var{address}
Markus Armbruster1b591702017-10-02 15:45:38 +0200790@findex info skeys
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300791Display the value of a storage key (s390 only)
792ETEXI
793
Claudio Imbrendaf860d492016-08-15 18:44:04 +0200794#if defined(TARGET_S390X)
795 {
796 .name = "cmma",
797 .args_type = "addr:l,count:l?",
798 .params = "address [count]",
799 .help = "Display the values of the CMMA storage attributes for a range of pages",
800 .cmd = hmp_info_cmma,
801 },
802#endif
803
804STEXI
805@item info cmma @var{address}
Markus Armbruster1b591702017-10-02 15:45:38 +0200806@findex info cmma
Claudio Imbrendaf860d492016-08-15 18:44:04 +0200807Display the values of the CMMA storage attributes for a range of pages (s390 only)
808ETEXI
809
Peter Xu4a6b52d2016-02-18 13:16:55 +0800810 {
811 .name = "dump",
812 .args_type = "",
813 .params = "",
814 .help = "Display the latest dump status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400815 .cmd = hmp_info_dump,
Peter Xu4a6b52d2016-02-18 13:16:55 +0800816 },
817
818STEXI
819@item info dump
Markus Armbruster1b591702017-10-02 15:45:38 +0200820@findex info dump
Peter Xu4a6b52d2016-02-18 13:16:55 +0800821Display the latest dump status.
822ETEXI
823
Bharata B Raod2d8d462016-06-10 06:29:07 +0530824 {
Peter Xube9b23c2017-05-12 12:17:41 +0800825 .name = "ramblock",
826 .args_type = "",
827 .params = "",
828 .help = "Display system ramblock information",
829 .cmd = hmp_info_ramblock,
830 },
831
832STEXI
833@item info ramblock
Markus Armbruster1b591702017-10-02 15:45:38 +0200834@findex info ramblock
Peter Xube9b23c2017-05-12 12:17:41 +0800835Dump all the ramblocks of the system.
836ETEXI
837
838 {
Bharata B Raod2d8d462016-06-10 06:29:07 +0530839 .name = "hotpluggable-cpus",
840 .args_type = "",
841 .params = "",
842 .help = "Show information about hotpluggable CPUs",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400843 .cmd = hmp_hotpluggable_cpus,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +0100844 .flags = "p",
Bharata B Raod2d8d462016-06-10 06:29:07 +0530845 },
846
847STEXI
848@item info hotpluggable-cpus
Markus Armbruster1b591702017-10-02 15:45:38 +0200849@findex info hotpluggable-cpus
Bharata B Raod2d8d462016-06-10 06:29:07 +0530850Show information about hotpluggable CPUs
851ETEXI
852
Igor Mammedov39164c12017-02-16 15:15:37 -0800853 {
854 .name = "vm-generation-id",
855 .args_type = "",
856 .params = "",
857 .help = "Show Virtual Machine Generation ID",
858 .cmd = hmp_info_vm_generation_id,
859 },
860
861STEXI
Markus Armbrustera9272512017-10-02 15:45:37 +0200862@item info vm-generation-id
Markus Armbruster1b591702017-10-02 15:45:38 +0200863@findex info vm-generation-id
Markus Armbrustera9272512017-10-02 15:45:37 +0200864Show Virtual Machine Generation ID
Vadim Galitsynd0f63c12017-08-29 17:30:22 +0200865ETEXI
866
867 {
868 .name = "memory_size_summary",
869 .args_type = "",
870 .params = "",
871 .help = "show the amount of initially allocated and "
872 "present hotpluggable (if enabled) memory in bytes.",
873 .cmd = hmp_info_memory_size_summary,
874 },
875
876STEXI
Markus Armbrustera9272512017-10-02 15:45:37 +0200877@item info memory_size_summary
Markus Armbruster1b591702017-10-02 15:45:38 +0200878@findex info memory_size_summary
Markus Armbrustera9272512017-10-02 15:45:37 +0200879Display the amount of initially allocated and present hotpluggable (if
880enabled) memory in bytes.
881ETEXI
882
Brijesh Singh63036312018-03-08 06:48:47 -0600883#if defined(TARGET_I386)
884 {
885 .name = "sev",
886 .args_type = "",
887 .params = "",
888 .help = "show SEV information",
889 .cmd = hmp_info_sev,
890 },
891#endif
892
893STEXI
894@item info sev
895@findex info sev
896Show SEV information.
897ETEXI
898
Markus Armbrustera9272512017-10-02 15:45:37 +0200899STEXI
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300900@end table
901ETEXI
Pavel Butsykin2cd8af22015-09-10 18:39:01 +0300902
903STEXI
904@end table
905ETEXI