]>
Commit | Line | Data |
---|---|---|
3c95fdef PM |
1 | HXCOMM Use DEFHEADING() to define headings in both help text and rST. |
2 | HXCOMM Text between SRST and ERST is copied to the rST version and | |
3 | HXCOMM discarded from C version. | |
da76ee76 PB |
4 | HXCOMM DEF(command, args, callback, arg_string, help) is used to construct |
5 | HXCOMM monitor info commands | |
3c95fdef | 6 | HXCOMM HXCOMM can be used for comments, discarded from both rST and C. |
a12e74cc PM |
7 | HXCOMM |
8 | HXCOMM In this file, generally SRST fragments should have two extra | |
9 | HXCOMM spaces of indent, so that the documentation list item for "info foo" | |
10 | HXCOMM appears inside the documentation list item for the top level | |
11 | HXCOMM "info" documentation entry. The exception is the first SRST | |
12 | HXCOMM fragment that defines that top level entry. | |
da76ee76 | 13 | |
a12e74cc PM |
14 | SRST |
15 | ``info`` *subcommand* | |
16 | Show various information about the system state. | |
17 | ||
18 | ERST | |
da76ee76 PB |
19 | |
20 | { | |
21 | .name = "version", | |
22 | .args_type = "", | |
23 | .params = "", | |
24 | .help = "show the version of QEMU", | |
2b9e3576 | 25 | .cmd = hmp_info_version, |
8c7c7ecb | 26 | .flags = "p", |
da76ee76 PB |
27 | }, |
28 | ||
a12e74cc PM |
29 | SRST |
30 | ``info version`` | |
31 | Show the version of QEMU. | |
32 | ERST | |
da76ee76 PB |
33 | |
34 | { | |
35 | .name = "network", | |
36 | .args_type = "", | |
37 | .params = "", | |
38 | .help = "show the network state", | |
2b9e3576 | 39 | .cmd = hmp_info_network, |
da76ee76 PB |
40 | }, |
41 | ||
a12e74cc PM |
42 | SRST |
43 | ``info network`` | |
44 | Show the network state. | |
45 | ERST | |
da76ee76 PB |
46 | |
47 | { | |
48 | .name = "chardev", | |
49 | .args_type = "", | |
50 | .params = "", | |
51 | .help = "show the character devices", | |
2b9e3576 | 52 | .cmd = hmp_info_chardev, |
8c7c7ecb | 53 | .flags = "p", |
da76ee76 PB |
54 | }, |
55 | ||
a12e74cc PM |
56 | SRST |
57 | ``info chardev`` | |
58 | Show the character devices. | |
59 | ERST | |
da76ee76 PB |
60 | |
61 | { | |
62 | .name = "block", | |
63 | .args_type = "nodes:-n,verbose:-v,device:B?", | |
64 | .params = "[-n] [-v] [device]", | |
65 | .help = "show info of one block device or all block devices " | |
66 | "(-n: show named nodes; -v: show details)", | |
2b9e3576 | 67 | .cmd = hmp_info_block, |
da76ee76 PB |
68 | }, |
69 | ||
a12e74cc PM |
70 | SRST |
71 | ``info block`` | |
72 | Show info of one block device or all block devices. | |
73 | ERST | |
da76ee76 PB |
74 | |
75 | { | |
76 | .name = "blockstats", | |
77 | .args_type = "", | |
78 | .params = "", | |
79 | .help = "show block device statistics", | |
2b9e3576 | 80 | .cmd = hmp_info_blockstats, |
da76ee76 PB |
81 | }, |
82 | ||
a12e74cc PM |
83 | SRST |
84 | ``info blockstats`` | |
85 | Show block device statistics. | |
86 | ERST | |
da76ee76 PB |
87 | |
88 | { | |
89 | .name = "block-jobs", | |
90 | .args_type = "", | |
91 | .params = "", | |
92 | .help = "show progress of ongoing block device operations", | |
2b9e3576 | 93 | .cmd = hmp_info_block_jobs, |
da76ee76 PB |
94 | }, |
95 | ||
a12e74cc PM |
96 | SRST |
97 | ``info block-jobs`` | |
98 | Show progress of ongoing block device operations. | |
99 | ERST | |
da76ee76 PB |
100 | |
101 | { | |
102 | .name = "registers", | |
18f08282 SJS |
103 | .args_type = "cpustate_all:-a", |
104 | .params = "[-a]", | |
105 | .help = "show the cpu registers (-a: all - show register info for all cpus)", | |
2b9e3576 | 106 | .cmd = hmp_info_registers, |
da76ee76 PB |
107 | }, |
108 | ||
a12e74cc PM |
109 | SRST |
110 | ``info registers`` | |
111 | Show the cpu registers. | |
112 | ERST | |
1f871d49 PB |
113 | |
114 | #if defined(TARGET_I386) | |
115 | { | |
116 | .name = "lapic", | |
1bef2284 YW |
117 | .args_type = "apic-id:i?", |
118 | .params = "[apic-id]", | |
119 | .help = "show local apic state (apic-id: local apic to read, default is which of current CPU)", | |
120 | ||
2b9e3576 | 121 | .cmd = hmp_info_local_apic, |
1f871d49 PB |
122 | }, |
123 | #endif | |
124 | ||
a12e74cc PM |
125 | SRST |
126 | ``info lapic`` | |
127 | Show local APIC state | |
128 | ERST | |
d665d696 PB |
129 | |
130 | #if defined(TARGET_I386) | |
131 | { | |
132 | .name = "ioapic", | |
133 | .args_type = "", | |
134 | .params = "", | |
135 | .help = "show io apic state", | |
2b9e3576 | 136 | .cmd = hmp_info_io_apic, |
d665d696 PB |
137 | }, |
138 | #endif | |
139 | ||
a12e74cc PM |
140 | SRST |
141 | ``info ioapic`` | |
142 | Show io APIC state | |
143 | ERST | |
da76ee76 PB |
144 | |
145 | { | |
146 | .name = "cpus", | |
147 | .args_type = "", | |
148 | .params = "", | |
149 | .help = "show infos for each CPU", | |
2b9e3576 | 150 | .cmd = hmp_info_cpus, |
da76ee76 PB |
151 | }, |
152 | ||
a12e74cc PM |
153 | SRST |
154 | ``info cpus`` | |
155 | Show infos for each CPU. | |
156 | ERST | |
da76ee76 PB |
157 | |
158 | { | |
159 | .name = "history", | |
160 | .args_type = "", | |
161 | .params = "", | |
162 | .help = "show the command line history", | |
2b9e3576 | 163 | .cmd = hmp_info_history, |
8c7c7ecb | 164 | .flags = "p", |
da76ee76 PB |
165 | }, |
166 | ||
a12e74cc PM |
167 | SRST |
168 | ``info history`` | |
169 | Show the command line history. | |
170 | ERST | |
da76ee76 | 171 | |
da76ee76 PB |
172 | { |
173 | .name = "irq", | |
174 | .args_type = "", | |
175 | .params = "", | |
176 | .help = "show the interrupts statistics (if available)", | |
2b9e3576 | 177 | .cmd = hmp_info_irq, |
da76ee76 PB |
178 | }, |
179 | ||
a12e74cc PM |
180 | SRST |
181 | ``info irq`` | |
182 | Show the interrupts statistics (if available). | |
183 | ERST | |
da76ee76 PB |
184 | |
185 | { | |
186 | .name = "pic", | |
187 | .args_type = "", | |
188 | .params = "", | |
254316fa | 189 | .help = "show PIC state", |
2b9e3576 | 190 | .cmd = hmp_info_pic, |
da76ee76 | 191 | }, |
da76ee76 | 192 | |
a12e74cc PM |
193 | SRST |
194 | ``info pic`` | |
195 | Show PIC state. | |
196 | ERST | |
f4b2c02a YS |
197 | |
198 | { | |
199 | .name = "rdma", | |
200 | .args_type = "", | |
201 | .params = "", | |
202 | .help = "show RDMA state", | |
203 | .cmd = hmp_info_rdma, | |
204 | }, | |
205 | ||
a12e74cc PM |
206 | SRST |
207 | ``info rdma`` | |
208 | Show RDMA state. | |
209 | ERST | |
abadcbc8 PB |
210 | |
211 | { | |
212 | .name = "pci", | |
213 | .args_type = "", | |
214 | .params = "", | |
215 | .help = "show PCI info", | |
2b9e3576 | 216 | .cmd = hmp_info_pci, |
abadcbc8 PB |
217 | }, |
218 | ||
a12e74cc PM |
219 | SRST |
220 | ``info pci`` | |
221 | Show PCI information. | |
222 | ERST | |
da76ee76 PB |
223 | |
224 | #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \ | |
2097dca6 | 225 | defined(TARGET_PPC) || defined(TARGET_XTENSA) || defined(TARGET_M68K) |
da76ee76 PB |
226 | { |
227 | .name = "tlb", | |
228 | .args_type = "", | |
229 | .params = "", | |
230 | .help = "show virtual to physical memory mappings", | |
2b9e3576 | 231 | .cmd = hmp_info_tlb, |
da76ee76 PB |
232 | }, |
233 | #endif | |
234 | ||
a12e74cc PM |
235 | SRST |
236 | ``info tlb`` | |
237 | Show virtual to physical memory mappings. | |
238 | ERST | |
da76ee76 | 239 | |
df42fdd6 | 240 | #if defined(TARGET_I386) || defined(TARGET_RISCV) |
da76ee76 PB |
241 | { |
242 | .name = "mem", | |
243 | .args_type = "", | |
244 | .params = "", | |
245 | .help = "show the active virtual memory mappings", | |
2b9e3576 | 246 | .cmd = hmp_info_mem, |
da76ee76 PB |
247 | }, |
248 | #endif | |
249 | ||
a12e74cc PM |
250 | SRST |
251 | ``info mem`` | |
252 | Show the active virtual memory mappings. | |
253 | ERST | |
da76ee76 PB |
254 | |
255 | { | |
256 | .name = "mtree", | |
fc051ae6 AK |
257 | .args_type = "flatview:-f,dispatch_tree:-d,owner:-o", |
258 | .params = "[-f][-d][-o]", | |
5e8fd947 | 259 | .help = "show memory tree (-f: dump flat view for address spaces;" |
fc051ae6 AK |
260 | "-d: dump dispatch tree, valid with -f only);" |
261 | "-o: dump region owners/parents", | |
2b9e3576 | 262 | .cmd = hmp_info_mtree, |
da76ee76 PB |
263 | }, |
264 | ||
a12e74cc PM |
265 | SRST |
266 | ``info mtree`` | |
267 | Show memory tree. | |
268 | ERST | |
da76ee76 | 269 | |
f0d14a95 | 270 | #if defined(CONFIG_TCG) |
da76ee76 PB |
271 | { |
272 | .name = "jit", | |
273 | .args_type = "", | |
274 | .params = "", | |
275 | .help = "show dynamic compiler info", | |
2b9e3576 | 276 | .cmd = hmp_info_jit, |
da76ee76 | 277 | }, |
f0d14a95 | 278 | #endif |
da76ee76 | 279 | |
a12e74cc PM |
280 | SRST |
281 | ``info jit`` | |
282 | Show dynamic compiler info. | |
283 | ERST | |
da76ee76 | 284 | |
f0d14a95 | 285 | #if defined(CONFIG_TCG) |
da76ee76 PB |
286 | { |
287 | .name = "opcount", | |
288 | .args_type = "", | |
289 | .params = "", | |
290 | .help = "show dynamic compiler opcode counters", | |
2b9e3576 | 291 | .cmd = hmp_info_opcount, |
da76ee76 | 292 | }, |
f0d14a95 | 293 | #endif |
da76ee76 | 294 | |
a12e74cc PM |
295 | SRST |
296 | ``info opcount`` | |
297 | Show dynamic compiler opcode counters | |
298 | ERST | |
97bfafe2 EC |
299 | |
300 | { | |
301 | .name = "sync-profile", | |
302 | .args_type = "mean:-m,no_coalesce:-n,max:i?", | |
303 | .params = "[-m] [-n] [max]", | |
304 | .help = "show synchronization profiling info, up to max entries " | |
305 | "(default: 10), sorted by total wait time. (-m: sort by " | |
306 | "mean wait time; -n: do not coalesce objects with the " | |
307 | "same call site)", | |
308 | .cmd = hmp_info_sync_profile, | |
309 | }, | |
310 | ||
a12e74cc PM |
311 | SRST |
312 | ``info sync-profile [-m|-n]`` [*max*] | |
313 | Show synchronization profiling info, up to *max* entries (default: 10), | |
314 | sorted by total wait time. | |
315 | ||
316 | ``-m`` | |
317 | sort by mean wait time | |
318 | ``-n`` | |
319 | do not coalesce objects with the same call site | |
320 | ||
321 | When different objects that share the same call site are coalesced, | |
322 | the "Object" field shows---enclosed in brackets---the number of objects | |
323 | being coalesced. | |
324 | ERST | |
da76ee76 PB |
325 | |
326 | { | |
327 | .name = "kvm", | |
328 | .args_type = "", | |
329 | .params = "", | |
330 | .help = "show KVM information", | |
2b9e3576 | 331 | .cmd = hmp_info_kvm, |
da76ee76 PB |
332 | }, |
333 | ||
a12e74cc PM |
334 | SRST |
335 | ``info kvm`` | |
336 | Show KVM information. | |
337 | ERST | |
da76ee76 PB |
338 | |
339 | { | |
340 | .name = "numa", | |
341 | .args_type = "", | |
342 | .params = "", | |
343 | .help = "show NUMA information", | |
2b9e3576 | 344 | .cmd = hmp_info_numa, |
da76ee76 PB |
345 | }, |
346 | ||
a12e74cc PM |
347 | SRST |
348 | ``info numa`` | |
349 | Show NUMA information. | |
350 | ERST | |
da76ee76 PB |
351 | |
352 | { | |
353 | .name = "usb", | |
354 | .args_type = "", | |
355 | .params = "", | |
356 | .help = "show guest USB devices", | |
2b9e3576 | 357 | .cmd = hmp_info_usb, |
da76ee76 PB |
358 | }, |
359 | ||
a12e74cc PM |
360 | SRST |
361 | ``info usb`` | |
362 | Show guest USB devices. | |
363 | ERST | |
da76ee76 PB |
364 | |
365 | { | |
366 | .name = "usbhost", | |
367 | .args_type = "", | |
368 | .params = "", | |
369 | .help = "show host USB devices", | |
2b9e3576 | 370 | .cmd = hmp_info_usbhost, |
da76ee76 PB |
371 | }, |
372 | ||
a12e74cc PM |
373 | SRST |
374 | ``info usbhost`` | |
375 | Show host USB devices. | |
376 | ERST | |
da76ee76 PB |
377 | |
378 | { | |
379 | .name = "profile", | |
380 | .args_type = "", | |
381 | .params = "", | |
382 | .help = "show profiling information", | |
2b9e3576 | 383 | .cmd = hmp_info_profile, |
da76ee76 PB |
384 | }, |
385 | ||
a12e74cc PM |
386 | SRST |
387 | ``info profile`` | |
388 | Show profiling information. | |
389 | ERST | |
da76ee76 PB |
390 | |
391 | { | |
392 | .name = "capture", | |
393 | .args_type = "", | |
394 | .params = "", | |
395 | .help = "show capture information", | |
2b9e3576 | 396 | .cmd = hmp_info_capture, |
da76ee76 PB |
397 | }, |
398 | ||
a12e74cc PM |
399 | SRST |
400 | ``info capture`` | |
401 | Show capture information. | |
402 | ERST | |
da76ee76 PB |
403 | |
404 | { | |
405 | .name = "snapshots", | |
406 | .args_type = "", | |
407 | .params = "", | |
408 | .help = "show the currently saved VM snapshots", | |
2b9e3576 | 409 | .cmd = hmp_info_snapshots, |
da76ee76 PB |
410 | }, |
411 | ||
a12e74cc PM |
412 | SRST |
413 | ``info snapshots`` | |
414 | Show the currently saved VM snapshots. | |
415 | ERST | |
da76ee76 PB |
416 | |
417 | { | |
418 | .name = "status", | |
419 | .args_type = "", | |
420 | .params = "", | |
421 | .help = "show the current VM status (running|paused)", | |
2b9e3576 | 422 | .cmd = hmp_info_status, |
8c7c7ecb | 423 | .flags = "p", |
da76ee76 PB |
424 | }, |
425 | ||
a12e74cc PM |
426 | SRST |
427 | ``info status`` | |
428 | Show the current VM status (running|paused). | |
429 | ERST | |
da76ee76 PB |
430 | |
431 | { | |
432 | .name = "mice", | |
433 | .args_type = "", | |
434 | .params = "", | |
435 | .help = "show which guest mouse is receiving events", | |
2b9e3576 | 436 | .cmd = hmp_info_mice, |
da76ee76 PB |
437 | }, |
438 | ||
a12e74cc PM |
439 | SRST |
440 | ``info mice`` | |
441 | Show which guest mouse is receiving events. | |
442 | ERST | |
da76ee76 | 443 | |
05eb4a25 | 444 | #if defined(CONFIG_VNC) |
da76ee76 PB |
445 | { |
446 | .name = "vnc", | |
447 | .args_type = "", | |
448 | .params = "", | |
449 | .help = "show the vnc server status", | |
2b9e3576 | 450 | .cmd = hmp_info_vnc, |
da76ee76 | 451 | }, |
05eb4a25 | 452 | #endif |
da76ee76 | 453 | |
a12e74cc PM |
454 | SRST |
455 | ``info vnc`` | |
456 | Show the vnc server status. | |
457 | ERST | |
da76ee76 PB |
458 | |
459 | #if defined(CONFIG_SPICE) | |
460 | { | |
461 | .name = "spice", | |
462 | .args_type = "", | |
463 | .params = "", | |
464 | .help = "show the spice server status", | |
2b9e3576 | 465 | .cmd = hmp_info_spice, |
da76ee76 PB |
466 | }, |
467 | #endif | |
468 | ||
a12e74cc PM |
469 | SRST |
470 | ``info spice`` | |
471 | Show the spice server status. | |
472 | ERST | |
da76ee76 PB |
473 | |
474 | { | |
475 | .name = "name", | |
476 | .args_type = "", | |
477 | .params = "", | |
478 | .help = "show the current VM name", | |
2b9e3576 | 479 | .cmd = hmp_info_name, |
8c7c7ecb | 480 | .flags = "p", |
da76ee76 PB |
481 | }, |
482 | ||
a12e74cc PM |
483 | SRST |
484 | ``info name`` | |
485 | Show the current VM name. | |
486 | ERST | |
da76ee76 PB |
487 | |
488 | { | |
489 | .name = "uuid", | |
490 | .args_type = "", | |
491 | .params = "", | |
492 | .help = "show the current VM UUID", | |
2b9e3576 | 493 | .cmd = hmp_info_uuid, |
8c7c7ecb | 494 | .flags = "p", |
da76ee76 PB |
495 | }, |
496 | ||
a12e74cc PM |
497 | SRST |
498 | ``info uuid`` | |
499 | Show the current VM UUID. | |
500 | ERST | |
da76ee76 PB |
501 | |
502 | { | |
503 | .name = "cpustats", | |
504 | .args_type = "", | |
505 | .params = "", | |
506 | .help = "show CPU statistics", | |
2b9e3576 | 507 | .cmd = hmp_info_cpustats, |
da76ee76 PB |
508 | }, |
509 | ||
a12e74cc PM |
510 | SRST |
511 | ``info cpustats`` | |
512 | Show CPU statistics. | |
513 | ERST | |
da76ee76 PB |
514 | |
515 | #if defined(CONFIG_SLIRP) | |
516 | { | |
517 | .name = "usernet", | |
518 | .args_type = "", | |
519 | .params = "", | |
520 | .help = "show user network stack connection states", | |
2b9e3576 | 521 | .cmd = hmp_info_usernet, |
da76ee76 PB |
522 | }, |
523 | #endif | |
524 | ||
a12e74cc PM |
525 | SRST |
526 | ``info usernet`` | |
527 | Show user network stack connection states. | |
528 | ERST | |
da76ee76 PB |
529 | |
530 | { | |
531 | .name = "migrate", | |
532 | .args_type = "", | |
533 | .params = "", | |
534 | .help = "show migration status", | |
2b9e3576 | 535 | .cmd = hmp_info_migrate, |
da76ee76 PB |
536 | }, |
537 | ||
a12e74cc PM |
538 | SRST |
539 | ``info migrate`` | |
540 | Show migration status. | |
541 | ERST | |
da76ee76 PB |
542 | |
543 | { | |
544 | .name = "migrate_capabilities", | |
545 | .args_type = "", | |
546 | .params = "", | |
547 | .help = "show current migration capabilities", | |
2b9e3576 | 548 | .cmd = hmp_info_migrate_capabilities, |
da76ee76 PB |
549 | }, |
550 | ||
a12e74cc PM |
551 | SRST |
552 | ``info migrate_capabilities`` | |
553 | Show current migration capabilities. | |
554 | ERST | |
da76ee76 PB |
555 | |
556 | { | |
557 | .name = "migrate_parameters", | |
558 | .args_type = "", | |
559 | .params = "", | |
560 | .help = "show current migration parameters", | |
2b9e3576 | 561 | .cmd = hmp_info_migrate_parameters, |
da76ee76 PB |
562 | }, |
563 | ||
a12e74cc PM |
564 | SRST |
565 | ``info migrate_parameters`` | |
566 | Show current migration parameters. | |
567 | ERST | |
da76ee76 PB |
568 | |
569 | { | |
570 | .name = "migrate_cache_size", | |
571 | .args_type = "", | |
572 | .params = "", | |
573 | .help = "show current migration xbzrle cache size", | |
2b9e3576 | 574 | .cmd = hmp_info_migrate_cache_size, |
da76ee76 PB |
575 | }, |
576 | ||
a12e74cc PM |
577 | SRST |
578 | ``info migrate_cache_size`` | |
579 | Show current migration xbzrle cache size. | |
580 | ERST | |
da76ee76 PB |
581 | |
582 | { | |
583 | .name = "balloon", | |
584 | .args_type = "", | |
585 | .params = "", | |
586 | .help = "show balloon information", | |
2b9e3576 | 587 | .cmd = hmp_info_balloon, |
da76ee76 PB |
588 | }, |
589 | ||
a12e74cc PM |
590 | SRST |
591 | ``info balloon`` | |
592 | Show balloon information. | |
593 | ERST | |
da76ee76 PB |
594 | |
595 | { | |
596 | .name = "qtree", | |
597 | .args_type = "", | |
598 | .params = "", | |
599 | .help = "show device tree", | |
2b9e3576 | 600 | .cmd = hmp_info_qtree, |
da76ee76 PB |
601 | }, |
602 | ||
a12e74cc PM |
603 | SRST |
604 | ``info qtree`` | |
605 | Show device tree. | |
606 | ERST | |
da76ee76 PB |
607 | |
608 | { | |
609 | .name = "qdm", | |
610 | .args_type = "", | |
611 | .params = "", | |
612 | .help = "show qdev device model list", | |
2b9e3576 | 613 | .cmd = hmp_info_qdm, |
da76ee76 PB |
614 | }, |
615 | ||
a12e74cc PM |
616 | SRST |
617 | ``info qdm`` | |
618 | Show qdev device model list. | |
619 | ERST | |
da76ee76 PB |
620 | |
621 | { | |
622 | .name = "qom-tree", | |
623 | .args_type = "path:s?", | |
624 | .params = "[path]", | |
625 | .help = "show QOM composition tree", | |
2b9e3576 | 626 | .cmd = hmp_info_qom_tree, |
8c7c7ecb | 627 | .flags = "p", |
da76ee76 PB |
628 | }, |
629 | ||
a12e74cc PM |
630 | SRST |
631 | ``info qom-tree`` | |
632 | Show QOM composition tree. | |
633 | ERST | |
da76ee76 PB |
634 | |
635 | { | |
636 | .name = "roms", | |
637 | .args_type = "", | |
638 | .params = "", | |
639 | .help = "show roms", | |
2b9e3576 | 640 | .cmd = hmp_info_roms, |
da76ee76 PB |
641 | }, |
642 | ||
a12e74cc PM |
643 | SRST |
644 | ``info roms`` | |
645 | Show roms. | |
646 | ERST | |
da76ee76 PB |
647 | |
648 | { | |
649 | .name = "trace-events", | |
77e2b172 LV |
650 | .args_type = "name:s?,vcpu:i?", |
651 | .params = "[name] [vcpu]", | |
bd71211d | 652 | .help = "show available trace-events & their state " |
77e2b172 | 653 | "(name: event name pattern; vcpu: vCPU to query, default is any)", |
2b9e3576 | 654 | .cmd = hmp_info_trace_events, |
bd71211d | 655 | .command_completion = info_trace_events_completion, |
da76ee76 PB |
656 | }, |
657 | ||
a12e74cc PM |
658 | SRST |
659 | ``info trace-events`` | |
660 | Show available trace-events & their state. | |
661 | ERST | |
da76ee76 PB |
662 | |
663 | { | |
664 | .name = "tpm", | |
665 | .args_type = "", | |
666 | .params = "", | |
667 | .help = "show the TPM device", | |
2b9e3576 | 668 | .cmd = hmp_info_tpm, |
da76ee76 PB |
669 | }, |
670 | ||
a12e74cc PM |
671 | SRST |
672 | ``info tpm`` | |
673 | Show the TPM device. | |
674 | ERST | |
da76ee76 PB |
675 | |
676 | { | |
677 | .name = "memdev", | |
678 | .args_type = "", | |
679 | .params = "", | |
680 | .help = "show memory backends", | |
2b9e3576 | 681 | .cmd = hmp_info_memdev, |
8c7c7ecb | 682 | .flags = "p", |
da76ee76 PB |
683 | }, |
684 | ||
a12e74cc PM |
685 | SRST |
686 | ``info memdev`` | |
687 | Show memory backends | |
688 | ERST | |
da76ee76 PB |
689 | |
690 | { | |
691 | .name = "memory-devices", | |
692 | .args_type = "", | |
693 | .params = "", | |
694 | .help = "show memory devices", | |
2b9e3576 | 695 | .cmd = hmp_info_memory_devices, |
da76ee76 PB |
696 | }, |
697 | ||
a12e74cc PM |
698 | SRST |
699 | ``info memory-devices`` | |
700 | Show memory devices. | |
701 | ERST | |
da76ee76 PB |
702 | |
703 | { | |
704 | .name = "iothreads", | |
705 | .args_type = "", | |
706 | .params = "", | |
707 | .help = "show iothreads", | |
2b9e3576 | 708 | .cmd = hmp_info_iothreads, |
8c7c7ecb | 709 | .flags = "p", |
da76ee76 PB |
710 | }, |
711 | ||
a12e74cc PM |
712 | SRST |
713 | ``info iothreads`` | |
714 | Show iothread's identifiers. | |
715 | ERST | |
da76ee76 PB |
716 | |
717 | { | |
718 | .name = "rocker", | |
719 | .args_type = "name:s", | |
720 | .params = "name", | |
721 | .help = "Show rocker switch", | |
2b9e3576 | 722 | .cmd = hmp_rocker, |
da76ee76 PB |
723 | }, |
724 | ||
a12e74cc PM |
725 | SRST |
726 | ``info rocker`` *name* | |
727 | Show rocker switch. | |
728 | ERST | |
da76ee76 PB |
729 | |
730 | { | |
731 | .name = "rocker-ports", | |
732 | .args_type = "name:s", | |
733 | .params = "name", | |
734 | .help = "Show rocker ports", | |
2b9e3576 | 735 | .cmd = hmp_rocker_ports, |
da76ee76 PB |
736 | }, |
737 | ||
a12e74cc PM |
738 | SRST |
739 | ``info rocker-ports`` *name*-ports | |
740 | Show rocker ports. | |
741 | ERST | |
da76ee76 PB |
742 | |
743 | { | |
744 | .name = "rocker-of-dpa-flows", | |
745 | .args_type = "name:s,tbl_id:i?", | |
746 | .params = "name [tbl_id]", | |
747 | .help = "Show rocker OF-DPA flow tables", | |
2b9e3576 | 748 | .cmd = hmp_rocker_of_dpa_flows, |
da76ee76 PB |
749 | }, |
750 | ||
a12e74cc PM |
751 | SRST |
752 | ``info rocker-of-dpa-flows`` *name* [*tbl_id*] | |
753 | Show rocker OF-DPA flow tables. | |
754 | ERST | |
da76ee76 PB |
755 | |
756 | { | |
757 | .name = "rocker-of-dpa-groups", | |
758 | .args_type = "name:s,type:i?", | |
759 | .params = "name [type]", | |
760 | .help = "Show rocker OF-DPA groups", | |
2b9e3576 | 761 | .cmd = hmp_rocker_of_dpa_groups, |
da76ee76 PB |
762 | }, |
763 | ||
a12e74cc PM |
764 | SRST |
765 | ``info rocker-of-dpa-groups`` *name* [*type*] | |
766 | Show rocker OF-DPA groups. | |
767 | ERST | |
da76ee76 PB |
768 | |
769 | #if defined(TARGET_S390X) | |
770 | { | |
771 | .name = "skeys", | |
772 | .args_type = "addr:l", | |
773 | .params = "address", | |
774 | .help = "Display the value of a storage key", | |
2b9e3576 | 775 | .cmd = hmp_info_skeys, |
da76ee76 PB |
776 | }, |
777 | #endif | |
778 | ||
a12e74cc PM |
779 | SRST |
780 | ``info skeys`` *address* | |
781 | Display the value of a storage key (s390 only) | |
782 | ERST | |
f860d497 CI |
783 | |
784 | #if defined(TARGET_S390X) | |
785 | { | |
786 | .name = "cmma", | |
787 | .args_type = "addr:l,count:l?", | |
788 | .params = "address [count]", | |
789 | .help = "Display the values of the CMMA storage attributes for a range of pages", | |
790 | .cmd = hmp_info_cmma, | |
791 | }, | |
792 | #endif | |
793 | ||
a12e74cc PM |
794 | SRST |
795 | ``info cmma`` *address* | |
796 | Display the values of the CMMA storage attributes for a range of | |
797 | pages (s390 only) | |
798 | ERST | |
4a6b52d6 PX |
799 | |
800 | { | |
801 | .name = "dump", | |
802 | .args_type = "", | |
803 | .params = "", | |
804 | .help = "Display the latest dump status", | |
2b9e3576 | 805 | .cmd = hmp_info_dump, |
4a6b52d6 PX |
806 | }, |
807 | ||
a12e74cc PM |
808 | SRST |
809 | ``info dump`` | |
810 | Display the latest dump status. | |
811 | ERST | |
be9b23c4 PX |
812 | |
813 | { | |
814 | .name = "ramblock", | |
815 | .args_type = "", | |
816 | .params = "", | |
817 | .help = "Display system ramblock information", | |
818 | .cmd = hmp_info_ramblock, | |
819 | }, | |
820 | ||
a12e74cc PM |
821 | SRST |
822 | ``info ramblock`` | |
823 | Dump all the ramblocks of the system. | |
824 | ERST | |
d2d8d46f BR |
825 | |
826 | { | |
827 | .name = "hotpluggable-cpus", | |
828 | .args_type = "", | |
829 | .params = "", | |
830 | .help = "Show information about hotpluggable CPUs", | |
2b9e3576 | 831 | .cmd = hmp_hotpluggable_cpus, |
8c7c7ecb | 832 | .flags = "p", |
d2d8d46f BR |
833 | }, |
834 | ||
a12e74cc PM |
835 | SRST |
836 | ``info hotpluggable-cpus`` | |
837 | Show information about hotpluggable CPUs | |
838 | ERST | |
39164c13 IM |
839 | |
840 | { | |
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 | ||
a12e74cc PM |
848 | SRST |
849 | ``info vm-generation-id`` | |
850 | Show Virtual Machine Generation ID | |
851 | ERST | |
d0f63c1e VG |
852 | |
853 | { | |
854 | .name = "memory_size_summary", | |
855 | .args_type = "", | |
856 | .params = "", | |
857 | .help = "show the amount of initially allocated and " | |
858 | "present hotpluggable (if enabled) memory in bytes.", | |
859 | .cmd = hmp_info_memory_size_summary, | |
860 | }, | |
861 | ||
a12e74cc PM |
862 | SRST |
863 | ``info memory_size_summary`` | |
864 | Display the amount of initially allocated and present hotpluggable (if | |
865 | enabled) memory in bytes. | |
866 | ERST | |
a9272513 | 867 | |
63036314 BS |
868 | #if defined(TARGET_I386) |
869 | { | |
870 | .name = "sev", | |
871 | .args_type = "", | |
872 | .params = "", | |
873 | .help = "show SEV information", | |
874 | .cmd = hmp_info_sev, | |
875 | }, | |
876 | #endif | |
877 | ||
a12e74cc PM |
878 | SRST |
879 | ``info sev`` | |
880 | Show SEV information. | |
881 | ERST | |
63036314 | 882 | |
2cd8af2d | 883 |