blob: 54c3e5eac668c018feedac1d03d00dcdad9aa1de [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,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030022 },
23
24STEXI
25@item info version
Markus Armbruster1b591702017-10-02 15:45:38 +020026@findex info version
Pavel Butsykinda76ee72015-09-10 18:38:58 +030027Show the version of QEMU.
28ETEXI
29
30 {
31 .name = "network",
32 .args_type = "",
33 .params = "",
34 .help = "show the network state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040035 .cmd = hmp_info_network,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030036 },
37
38STEXI
39@item info network
Markus Armbruster1b591702017-10-02 15:45:38 +020040@findex info network
Pavel Butsykinda76ee72015-09-10 18:38:58 +030041Show the network state.
42ETEXI
43
44 {
45 .name = "chardev",
46 .args_type = "",
47 .params = "",
48 .help = "show the character devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040049 .cmd = hmp_info_chardev,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030050 },
51
52STEXI
53@item info chardev
Markus Armbruster1b591702017-10-02 15:45:38 +020054@findex info chardev
Pavel Butsykinda76ee72015-09-10 18:38:58 +030055Show the character devices.
56ETEXI
57
58 {
59 .name = "block",
60 .args_type = "nodes:-n,verbose:-v,device:B?",
61 .params = "[-n] [-v] [device]",
62 .help = "show info of one block device or all block devices "
63 "(-n: show named nodes; -v: show details)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040064 .cmd = hmp_info_block,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030065 },
66
67STEXI
68@item info block
Markus Armbruster1b591702017-10-02 15:45:38 +020069@findex info block
Pavel Butsykinda76ee72015-09-10 18:38:58 +030070Show info of one block device or all block devices.
71ETEXI
72
73 {
74 .name = "blockstats",
75 .args_type = "",
76 .params = "",
77 .help = "show block device statistics",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040078 .cmd = hmp_info_blockstats,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030079 },
80
81STEXI
82@item info blockstats
Markus Armbruster1b591702017-10-02 15:45:38 +020083@findex info blockstats
Pavel Butsykinda76ee72015-09-10 18:38:58 +030084Show block device statistics.
85ETEXI
86
87 {
88 .name = "block-jobs",
89 .args_type = "",
90 .params = "",
91 .help = "show progress of ongoing block device operations",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040092 .cmd = hmp_info_block_jobs,
Pavel Butsykinda76ee72015-09-10 18:38:58 +030093 },
94
95STEXI
96@item info block-jobs
Markus Armbruster1b591702017-10-02 15:45:38 +020097@findex info block-jobs
Pavel Butsykinda76ee72015-09-10 18:38:58 +030098Show progress of ongoing block device operations.
99ETEXI
100
101 {
102 .name = "registers",
Suraj Jitindar Singh18f08282017-06-08 15:41:16 +1000103 .args_type = "cpustate_all:-a",
104 .params = "[-a]",
105 .help = "show the cpu registers (-a: all - show register info for all cpus)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400106 .cmd = hmp_info_registers,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300107 },
108
109STEXI
110@item info registers
Markus Armbruster1b591702017-10-02 15:45:38 +0200111@findex info registers
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300112Show the cpu registers.
113ETEXI
114
Pavel Butsykin1f871d42015-09-22 16:18:18 +0300115#if defined(TARGET_I386)
116 {
117 .name = "lapic",
Yi Wang1bef2282017-07-26 02:18:37 -0400118 .args_type = "apic-id:i?",
119 .params = "[apic-id]",
120 .help = "show local apic state (apic-id: local apic to read, default is which of current CPU)",
121
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400122 .cmd = hmp_info_local_apic,
Pavel Butsykin1f871d42015-09-22 16:18:18 +0300123 },
124#endif
125
126STEXI
127@item info lapic
Markus Armbruster1b591702017-10-02 15:45:38 +0200128@findex info lapic
Pavel Butsykin1f871d42015-09-22 16:18:18 +0300129Show local APIC state
130ETEXI
131
Pavel Butsykind665d692015-09-22 16:18:20 +0300132#if defined(TARGET_I386)
133 {
134 .name = "ioapic",
135 .args_type = "",
136 .params = "",
137 .help = "show io apic state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400138 .cmd = hmp_info_io_apic,
Pavel Butsykind665d692015-09-22 16:18:20 +0300139 },
140#endif
141
142STEXI
143@item info ioapic
Markus Armbruster1b591702017-10-02 15:45:38 +0200144@findex info ioapic
Pavel Butsykind665d692015-09-22 16:18:20 +0300145Show io APIC state
146ETEXI
147
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300148 {
149 .name = "cpus",
150 .args_type = "",
151 .params = "",
152 .help = "show infos for each CPU",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400153 .cmd = hmp_info_cpus,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300154 },
155
156STEXI
157@item info cpus
Markus Armbruster1b591702017-10-02 15:45:38 +0200158@findex info cpus
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300159Show infos for each CPU.
160ETEXI
161
162 {
163 .name = "history",
164 .args_type = "",
165 .params = "",
166 .help = "show the command line history",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400167 .cmd = hmp_info_history,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300168 },
169
170STEXI
171@item info history
Markus Armbruster1b591702017-10-02 15:45:38 +0200172@findex info history
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300173Show the command line history.
174ETEXI
175
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300176 {
177 .name = "irq",
178 .args_type = "",
179 .params = "",
180 .help = "show the interrupts statistics (if available)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400181 .cmd = hmp_info_irq,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300182 },
183
184STEXI
185@item info irq
Markus Armbruster1b591702017-10-02 15:45:38 +0200186@findex info irq
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300187Show the interrupts statistics (if available).
188ETEXI
189
190 {
191 .name = "pic",
192 .args_type = "",
193 .params = "",
Hervé Poussineau254316f2016-09-26 22:23:28 +0200194 .help = "show PIC state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400195 .cmd = hmp_info_pic,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300196 },
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300197
198STEXI
199@item info pic
Markus Armbruster1b591702017-10-02 15:45:38 +0200200@findex info pic
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300201Show i8259 (PIC) state.
202ETEXI
203
Paolo Bonziniabadcbc2015-09-18 17:18:29 +0200204 {
205 .name = "pci",
206 .args_type = "",
207 .params = "",
208 .help = "show PCI info",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400209 .cmd = hmp_info_pci,
Paolo Bonziniabadcbc2015-09-18 17:18:29 +0200210 },
211
212STEXI
213@item info pci
Markus Armbruster1b591702017-10-02 15:45:38 +0200214@findex info pci
Paolo Bonziniabadcbc2015-09-18 17:18:29 +0200215Show PCI information.
216ETEXI
217
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300218#if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
219 defined(TARGET_PPC) || defined(TARGET_XTENSA)
220 {
221 .name = "tlb",
222 .args_type = "",
223 .params = "",
224 .help = "show virtual to physical memory mappings",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400225 .cmd = hmp_info_tlb,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300226 },
227#endif
228
229STEXI
230@item info tlb
Markus Armbruster1b591702017-10-02 15:45:38 +0200231@findex info tlb
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300232Show virtual to physical memory mappings.
233ETEXI
234
235#if defined(TARGET_I386)
236 {
237 .name = "mem",
238 .args_type = "",
239 .params = "",
240 .help = "show the active virtual memory mappings",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400241 .cmd = hmp_info_mem,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300242 },
243#endif
244
245STEXI
246@item info mem
Markus Armbruster1b591702017-10-02 15:45:38 +0200247@findex info mem
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300248Show the active virtual memory mappings.
249ETEXI
250
251 {
252 .name = "mtree",
Alexey Kardashevskiy5e8fd942017-09-21 18:51:06 +1000253 .args_type = "flatview:-f,dispatch_tree:-d",
254 .params = "[-f][-d]",
255 .help = "show memory tree (-f: dump flat view for address spaces;"
256 "-d: dump dispatch tree, valid with -f only)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400257 .cmd = hmp_info_mtree,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300258 },
259
260STEXI
261@item info mtree
Markus Armbruster1b591702017-10-02 15:45:38 +0200262@findex info mtree
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300263Show memory tree.
264ETEXI
265
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200266#if defined(CONFIG_TCG)
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300267 {
268 .name = "jit",
269 .args_type = "",
270 .params = "",
271 .help = "show dynamic compiler info",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400272 .cmd = hmp_info_jit,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300273 },
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200274#endif
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300275
276STEXI
277@item info jit
Markus Armbruster1b591702017-10-02 15:45:38 +0200278@findex info jit
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300279Show dynamic compiler info.
280ETEXI
281
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200282#if defined(CONFIG_TCG)
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300283 {
284 .name = "opcount",
285 .args_type = "",
286 .params = "",
287 .help = "show dynamic compiler opcode counters",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400288 .cmd = hmp_info_opcount,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300289 },
Paolo Bonzinif0d14a92012-09-17 13:42:41 +0200290#endif
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300291
292STEXI
293@item info opcount
Markus Armbruster1b591702017-10-02 15:45:38 +0200294@findex info opcount
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300295Show dynamic compiler opcode counters
296ETEXI
297
298 {
299 .name = "kvm",
300 .args_type = "",
301 .params = "",
302 .help = "show KVM information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400303 .cmd = hmp_info_kvm,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300304 },
305
306STEXI
307@item info kvm
Markus Armbruster1b591702017-10-02 15:45:38 +0200308@findex info kvm
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300309Show KVM information.
310ETEXI
311
312 {
313 .name = "numa",
314 .args_type = "",
315 .params = "",
316 .help = "show NUMA information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400317 .cmd = hmp_info_numa,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300318 },
319
320STEXI
321@item info numa
Markus Armbruster1b591702017-10-02 15:45:38 +0200322@findex info numa
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300323Show NUMA information.
324ETEXI
325
326 {
327 .name = "usb",
328 .args_type = "",
329 .params = "",
330 .help = "show guest USB devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400331 .cmd = hmp_info_usb,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300332 },
333
334STEXI
335@item info usb
Markus Armbruster1b591702017-10-02 15:45:38 +0200336@findex info usb
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300337Show guest USB devices.
338ETEXI
339
340 {
341 .name = "usbhost",
342 .args_type = "",
343 .params = "",
344 .help = "show host USB devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400345 .cmd = hmp_info_usbhost,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300346 },
347
348STEXI
349@item info usbhost
Markus Armbruster1b591702017-10-02 15:45:38 +0200350@findex info usbhost
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300351Show host USB devices.
352ETEXI
353
354 {
355 .name = "profile",
356 .args_type = "",
357 .params = "",
358 .help = "show profiling information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400359 .cmd = hmp_info_profile,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300360 },
361
362STEXI
363@item info profile
Markus Armbruster1b591702017-10-02 15:45:38 +0200364@findex info profile
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300365Show profiling information.
366ETEXI
367
368 {
369 .name = "capture",
370 .args_type = "",
371 .params = "",
372 .help = "show capture information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400373 .cmd = hmp_info_capture,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300374 },
375
376STEXI
377@item info capture
Markus Armbruster1b591702017-10-02 15:45:38 +0200378@findex info capture
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300379Show capture information.
380ETEXI
381
382 {
383 .name = "snapshots",
384 .args_type = "",
385 .params = "",
386 .help = "show the currently saved VM snapshots",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400387 .cmd = hmp_info_snapshots,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300388 },
389
390STEXI
391@item info snapshots
Markus Armbruster1b591702017-10-02 15:45:38 +0200392@findex info snapshots
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300393Show the currently saved VM snapshots.
394ETEXI
395
396 {
397 .name = "status",
398 .args_type = "",
399 .params = "",
400 .help = "show the current VM status (running|paused)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400401 .cmd = hmp_info_status,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300402 },
403
404STEXI
405@item info status
Markus Armbruster1b591702017-10-02 15:45:38 +0200406@findex info status
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300407Show the current VM status (running|paused).
408ETEXI
409
410 {
411 .name = "mice",
412 .args_type = "",
413 .params = "",
414 .help = "show which guest mouse is receiving events",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400415 .cmd = hmp_info_mice,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300416 },
417
418STEXI
419@item info mice
Markus Armbruster1b591702017-10-02 15:45:38 +0200420@findex info mice
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300421Show which guest mouse is receiving events.
422ETEXI
423
424 {
425 .name = "vnc",
426 .args_type = "",
427 .params = "",
428 .help = "show the vnc server status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400429 .cmd = hmp_info_vnc,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300430 },
431
432STEXI
433@item info vnc
Markus Armbruster1b591702017-10-02 15:45:38 +0200434@findex info vnc
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300435Show the vnc server status.
436ETEXI
437
438#if defined(CONFIG_SPICE)
439 {
440 .name = "spice",
441 .args_type = "",
442 .params = "",
443 .help = "show the spice server status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400444 .cmd = hmp_info_spice,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300445 },
446#endif
447
448STEXI
449@item info spice
Markus Armbruster1b591702017-10-02 15:45:38 +0200450@findex info spice
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300451Show the spice server status.
452ETEXI
453
454 {
455 .name = "name",
456 .args_type = "",
457 .params = "",
458 .help = "show the current VM name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400459 .cmd = hmp_info_name,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300460 },
461
462STEXI
463@item info name
Markus Armbruster1b591702017-10-02 15:45:38 +0200464@findex info name
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300465Show the current VM name.
466ETEXI
467
468 {
469 .name = "uuid",
470 .args_type = "",
471 .params = "",
472 .help = "show the current VM UUID",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400473 .cmd = hmp_info_uuid,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300474 },
475
476STEXI
477@item info uuid
Markus Armbruster1b591702017-10-02 15:45:38 +0200478@findex info uuid
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300479Show the current VM UUID.
480ETEXI
481
482 {
483 .name = "cpustats",
484 .args_type = "",
485 .params = "",
486 .help = "show CPU statistics",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400487 .cmd = hmp_info_cpustats,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300488 },
489
490STEXI
491@item info cpustats
Markus Armbruster1b591702017-10-02 15:45:38 +0200492@findex info cpustats
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300493Show CPU statistics.
494ETEXI
495
496#if defined(CONFIG_SLIRP)
497 {
498 .name = "usernet",
499 .args_type = "",
500 .params = "",
501 .help = "show user network stack connection states",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400502 .cmd = hmp_info_usernet,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300503 },
504#endif
505
506STEXI
507@item info usernet
Markus Armbruster1b591702017-10-02 15:45:38 +0200508@findex info usernet
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300509Show user network stack connection states.
510ETEXI
511
512 {
513 .name = "migrate",
514 .args_type = "",
515 .params = "",
516 .help = "show migration status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400517 .cmd = hmp_info_migrate,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300518 },
519
520STEXI
521@item info migrate
Markus Armbruster1b591702017-10-02 15:45:38 +0200522@findex info migrate
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300523Show migration status.
524ETEXI
525
526 {
527 .name = "migrate_capabilities",
528 .args_type = "",
529 .params = "",
530 .help = "show current migration capabilities",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400531 .cmd = hmp_info_migrate_capabilities,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300532 },
533
534STEXI
535@item info migrate_capabilities
Markus Armbruster1b591702017-10-02 15:45:38 +0200536@findex info migrate_capabilities
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300537Show current migration capabilities.
538ETEXI
539
540 {
541 .name = "migrate_parameters",
542 .args_type = "",
543 .params = "",
544 .help = "show current migration parameters",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400545 .cmd = hmp_info_migrate_parameters,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300546 },
547
548STEXI
549@item info migrate_parameters
Markus Armbruster1b591702017-10-02 15:45:38 +0200550@findex info migrate_parameters
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300551Show current migration parameters.
552ETEXI
553
554 {
555 .name = "migrate_cache_size",
556 .args_type = "",
557 .params = "",
558 .help = "show current migration xbzrle cache size",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400559 .cmd = hmp_info_migrate_cache_size,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300560 },
561
562STEXI
563@item info migrate_cache_size
Markus Armbruster1b591702017-10-02 15:45:38 +0200564@findex info migrate_cache_size
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300565Show current migration xbzrle cache size.
566ETEXI
567
568 {
569 .name = "balloon",
570 .args_type = "",
571 .params = "",
572 .help = "show balloon information",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400573 .cmd = hmp_info_balloon,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300574 },
575
576STEXI
577@item info balloon
Markus Armbruster1b591702017-10-02 15:45:38 +0200578@findex info balloon
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300579Show balloon information.
580ETEXI
581
582 {
583 .name = "qtree",
584 .args_type = "",
585 .params = "",
586 .help = "show device tree",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400587 .cmd = hmp_info_qtree,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300588 },
589
590STEXI
591@item info qtree
Markus Armbruster1b591702017-10-02 15:45:38 +0200592@findex info qtree
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300593Show device tree.
594ETEXI
595
596 {
597 .name = "qdm",
598 .args_type = "",
599 .params = "",
600 .help = "show qdev device model list",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400601 .cmd = hmp_info_qdm,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300602 },
603
604STEXI
605@item info qdm
Markus Armbruster1b591702017-10-02 15:45:38 +0200606@findex info qdm
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300607Show qdev device model list.
608ETEXI
609
610 {
611 .name = "qom-tree",
612 .args_type = "path:s?",
613 .params = "[path]",
614 .help = "show QOM composition tree",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400615 .cmd = hmp_info_qom_tree,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300616 },
617
618STEXI
619@item info qom-tree
Markus Armbruster1b591702017-10-02 15:45:38 +0200620@findex info qom-tree
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300621Show QOM composition tree.
622ETEXI
623
624 {
625 .name = "roms",
626 .args_type = "",
627 .params = "",
628 .help = "show roms",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400629 .cmd = hmp_info_roms,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300630 },
631
632STEXI
633@item info roms
Markus Armbruster1b591702017-10-02 15:45:38 +0200634@findex info roms
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300635Show roms.
636ETEXI
637
638 {
639 .name = "trace-events",
Lluís Vilanova77e2b172016-07-11 12:53:57 +0200640 .args_type = "name:s?,vcpu:i?",
641 .params = "[name] [vcpu]",
Lluís Vilanovabd712112016-07-11 12:53:51 +0200642 .help = "show available trace-events & their state "
Lluís Vilanova77e2b172016-07-11 12:53:57 +0200643 "(name: event name pattern; vcpu: vCPU to query, default is any)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400644 .cmd = hmp_info_trace_events,
Lluís Vilanovabd712112016-07-11 12:53:51 +0200645 .command_completion = info_trace_events_completion,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300646 },
647
648STEXI
649@item info trace-events
Markus Armbruster1b591702017-10-02 15:45:38 +0200650@findex info trace-events
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300651Show available trace-events & their state.
652ETEXI
653
654 {
655 .name = "tpm",
656 .args_type = "",
657 .params = "",
658 .help = "show the TPM device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400659 .cmd = hmp_info_tpm,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300660 },
661
662STEXI
663@item info tpm
Markus Armbruster1b591702017-10-02 15:45:38 +0200664@findex info tpm
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300665Show the TPM device.
666ETEXI
667
668 {
669 .name = "memdev",
670 .args_type = "",
671 .params = "",
672 .help = "show memory backends",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400673 .cmd = hmp_info_memdev,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300674 },
675
676STEXI
677@item info memdev
Markus Armbruster1b591702017-10-02 15:45:38 +0200678@findex info memdev
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300679Show memory backends
680ETEXI
681
682 {
683 .name = "memory-devices",
684 .args_type = "",
685 .params = "",
686 .help = "show memory devices",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400687 .cmd = hmp_info_memory_devices,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300688 },
689
690STEXI
691@item info memory-devices
Markus Armbruster1b591702017-10-02 15:45:38 +0200692@findex info memory-devices
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300693Show memory devices.
694ETEXI
695
696 {
697 .name = "iothreads",
698 .args_type = "",
699 .params = "",
700 .help = "show iothreads",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400701 .cmd = hmp_info_iothreads,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300702 },
703
704STEXI
705@item info iothreads
Markus Armbruster1b591702017-10-02 15:45:38 +0200706@findex info iothreads
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300707Show iothread's identifiers.
708ETEXI
709
710 {
711 .name = "rocker",
712 .args_type = "name:s",
713 .params = "name",
714 .help = "Show rocker switch",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400715 .cmd = hmp_rocker,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300716 },
717
718STEXI
719@item info rocker @var{name}
Markus Armbruster1b591702017-10-02 15:45:38 +0200720@findex info rocker
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300721Show rocker switch.
722ETEXI
723
724 {
725 .name = "rocker-ports",
726 .args_type = "name:s",
727 .params = "name",
728 .help = "Show rocker ports",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400729 .cmd = hmp_rocker_ports,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300730 },
731
732STEXI
Markus Armbrusterc325ccd2017-10-02 15:45:36 +0200733@item info rocker-ports @var{name}-ports
Markus Armbruster1b591702017-10-02 15:45:38 +0200734@findex info rocker-ports
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300735Show rocker ports.
736ETEXI
737
738 {
739 .name = "rocker-of-dpa-flows",
740 .args_type = "name:s,tbl_id:i?",
741 .params = "name [tbl_id]",
742 .help = "Show rocker OF-DPA flow tables",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400743 .cmd = hmp_rocker_of_dpa_flows,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300744 },
745
746STEXI
Markus Armbrusterc325ccd2017-10-02 15:45:36 +0200747@item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
Markus Armbruster1b591702017-10-02 15:45:38 +0200748@findex info rocker-of-dpa-flows
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300749Show rocker OF-DPA flow tables.
750ETEXI
751
752 {
753 .name = "rocker-of-dpa-groups",
754 .args_type = "name:s,type:i?",
755 .params = "name [type]",
756 .help = "Show rocker OF-DPA groups",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400757 .cmd = hmp_rocker_of_dpa_groups,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300758 },
759
760STEXI
761@item info rocker-of-dpa-groups @var{name} [@var{type}]
Markus Armbruster1b591702017-10-02 15:45:38 +0200762@findex info rocker-of-dpa-groups
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300763Show rocker OF-DPA groups.
764ETEXI
765
766#if defined(TARGET_S390X)
767 {
768 .name = "skeys",
769 .args_type = "addr:l",
770 .params = "address",
771 .help = "Display the value of a storage key",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400772 .cmd = hmp_info_skeys,
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300773 },
774#endif
775
776STEXI
777@item info skeys @var{address}
Markus Armbruster1b591702017-10-02 15:45:38 +0200778@findex info skeys
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300779Display the value of a storage key (s390 only)
780ETEXI
781
Claudio Imbrendaf860d492016-08-15 18:44:04 +0200782#if defined(TARGET_S390X)
783 {
784 .name = "cmma",
785 .args_type = "addr:l,count:l?",
786 .params = "address [count]",
787 .help = "Display the values of the CMMA storage attributes for a range of pages",
788 .cmd = hmp_info_cmma,
789 },
790#endif
791
792STEXI
793@item info cmma @var{address}
Markus Armbruster1b591702017-10-02 15:45:38 +0200794@findex info cmma
Claudio Imbrendaf860d492016-08-15 18:44:04 +0200795Display the values of the CMMA storage attributes for a range of pages (s390 only)
796ETEXI
797
Peter Xu4a6b52d2016-02-18 13:16:55 +0800798 {
799 .name = "dump",
800 .args_type = "",
801 .params = "",
802 .help = "Display the latest dump status",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400803 .cmd = hmp_info_dump,
Peter Xu4a6b52d2016-02-18 13:16:55 +0800804 },
805
806STEXI
807@item info dump
Markus Armbruster1b591702017-10-02 15:45:38 +0200808@findex info dump
Peter Xu4a6b52d2016-02-18 13:16:55 +0800809Display the latest dump status.
810ETEXI
811
Bharata B Raod2d8d462016-06-10 06:29:07 +0530812 {
Peter Xube9b23c2017-05-12 12:17:41 +0800813 .name = "ramblock",
814 .args_type = "",
815 .params = "",
816 .help = "Display system ramblock information",
817 .cmd = hmp_info_ramblock,
818 },
819
820STEXI
821@item info ramblock
Markus Armbruster1b591702017-10-02 15:45:38 +0200822@findex info ramblock
Peter Xube9b23c2017-05-12 12:17:41 +0800823Dump all the ramblocks of the system.
824ETEXI
825
826 {
Bharata B Raod2d8d462016-06-10 06:29:07 +0530827 .name = "hotpluggable-cpus",
828 .args_type = "",
829 .params = "",
830 .help = "Show information about hotpluggable CPUs",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400831 .cmd = hmp_hotpluggable_cpus,
Bharata B Raod2d8d462016-06-10 06:29:07 +0530832 },
833
834STEXI
835@item info hotpluggable-cpus
Markus Armbruster1b591702017-10-02 15:45:38 +0200836@findex info hotpluggable-cpus
Bharata B Raod2d8d462016-06-10 06:29:07 +0530837Show information about hotpluggable CPUs
838ETEXI
839
Igor Mammedov39164c12017-02-16 15:15:37 -0800840 {
841 .name = "vm-generation-id",
842 .args_type = "",
843 .params = "",
844 .help = "Show Virtual Machine Generation ID",
845 .cmd = hmp_info_vm_generation_id,
846 },
847
848STEXI
Markus Armbrustera9272512017-10-02 15:45:37 +0200849@item info vm-generation-id
Markus Armbruster1b591702017-10-02 15:45:38 +0200850@findex info vm-generation-id
Markus Armbrustera9272512017-10-02 15:45:37 +0200851Show Virtual Machine Generation ID
Vadim Galitsynd0f63c12017-08-29 17:30:22 +0200852ETEXI
853
854 {
855 .name = "memory_size_summary",
856 .args_type = "",
857 .params = "",
858 .help = "show the amount of initially allocated and "
859 "present hotpluggable (if enabled) memory in bytes.",
860 .cmd = hmp_info_memory_size_summary,
861 },
862
863STEXI
Markus Armbrustera9272512017-10-02 15:45:37 +0200864@item info memory_size_summary
Markus Armbruster1b591702017-10-02 15:45:38 +0200865@findex info memory_size_summary
Markus Armbrustera9272512017-10-02 15:45:37 +0200866Display the amount of initially allocated and present hotpluggable (if
867enabled) memory in bytes.
868ETEXI
869
870STEXI
Pavel Butsykinda76ee72015-09-10 18:38:58 +0300871@end table
872ETEXI
Pavel Butsykin2cd8af22015-09-10 18:39:01 +0300873
874STEXI
875@end table
876ETEXI