All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes
@ 2017-10-02 13:45 Markus Armbruster
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings Markus Armbruster
                   ` (3 more replies)
  0 siblings, 4 replies; 13+ messages in thread
From: Markus Armbruster @ 2017-10-02 13:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert

Markus Armbruster (3):
  hmp-commands-info: Fix "info rocker-FOO" misspellings
  hmp-commands-info: Move Texinfo stanzas to conventional place
  hmp-commands-info: Change "@findex FOO" to "@findex info FOO"

 hmp-commands-info.hx | 138 +++++++++++++++++++++++++--------------------------
 1 file changed, 69 insertions(+), 69 deletions(-)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 13+ messages in thread

* [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings
  2017-10-02 13:45 [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Markus Armbruster
@ 2017-10-02 13:45 ` Markus Armbruster
  2017-10-02 14:21   ` Dr. David Alan Gilbert
  2017-10-04 10:13   ` Marc-André Lureau
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place Markus Armbruster
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 13+ messages in thread
From: Markus Armbruster @ 2017-10-02 13:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert

Screwed up in commit da76ee7.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 hmp-commands-info.hx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
index 4f1ece93e5..574db7d24e 100644
--- a/hmp-commands-info.hx
+++ b/hmp-commands-info.hx
@@ -730,8 +730,8 @@ ETEXI
     },
 
 STEXI
-@item info rocker_ports @var{name}-ports
-@findex ocker-ports
+@item info rocker-ports @var{name}-ports
+@findex rocker-ports
 Show rocker ports.
 ETEXI
 
@@ -744,7 +744,7 @@ ETEXI
     },
 
 STEXI
-@item info rocker_of_dpa_flows @var{name} [@var{tbl_id}]
+@item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
 @findex rocker-of-dpa-flows
 Show rocker OF-DPA flow tables.
 ETEXI
-- 
2.13.6

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place
  2017-10-02 13:45 [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Markus Armbruster
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings Markus Armbruster
@ 2017-10-02 13:45 ` Markus Armbruster
  2017-10-02 14:31   ` Dr. David Alan Gilbert
                     ` (2 more replies)
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO" Markus Armbruster
  2017-10-05  9:09 ` [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Dr. David Alan Gilbert
  3 siblings, 3 replies; 13+ messages in thread
From: Markus Armbruster @ 2017-10-02 13:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert

A command's STEXI..ETEXI stanza follows the command's initializer.
Two commands got them backwards.  Correct that.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 hmp-commands-info.hx | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
index 574db7d24e..d27d3b1227 100644
--- a/hmp-commands-info.hx
+++ b/hmp-commands-info.hx
@@ -837,12 +837,6 @@ STEXI
 Show information about hotpluggable CPUs
 ETEXI
 
-STEXI
-@item info vm-generation-id
-@findex vm-generation-id
-Show Virtual Machine Generation ID
-ETEXI
-
     {
         .name       = "vm-generation-id",
         .args_type  = "",
@@ -852,10 +846,9 @@ ETEXI
     },
 
 STEXI
-@item info memory_size_summary
-@findex memory_size_summary
-Display the amount of initially allocated and present hotpluggable (if
-enabled) memory in bytes.
+@item info vm-generation-id
+@findex vm-generation-id
+Show Virtual Machine Generation ID
 ETEXI
 
     {
@@ -868,6 +861,13 @@ ETEXI
     },
 
 STEXI
+@item info memory_size_summary
+@findex memory_size_summary
+Display the amount of initially allocated and present hotpluggable (if
+enabled) memory in bytes.
+ETEXI
+
+STEXI
 @end table
 ETEXI
 
-- 
2.13.6

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO"
  2017-10-02 13:45 [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Markus Armbruster
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings Markus Armbruster
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place Markus Armbruster
@ 2017-10-02 13:45 ` Markus Armbruster
  2017-10-02 14:48   ` Dr. David Alan Gilbert
                     ` (2 more replies)
  2017-10-05  9:09 ` [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Dr. David Alan Gilbert
  3 siblings, 3 replies; 13+ messages in thread
From: Markus Armbruster @ 2017-10-02 13:45 UTC (permalink / raw)
  To: qemu-devel; +Cc: dgilbert

qemu-doc has the monitor commands in the "Function Index".  The "info
FOO" are listed as "FOO" there.  List them as "info FOO" instead.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 hmp-commands-info.hx | 118 +++++++++++++++++++++++++--------------------------
 1 file changed, 59 insertions(+), 59 deletions(-)

diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
index d27d3b1227..54c3e5eac6 100644
--- a/hmp-commands-info.hx
+++ b/hmp-commands-info.hx
@@ -23,7 +23,7 @@ ETEXI
 
 STEXI
 @item info version
-@findex version
+@findex info version
 Show the version of QEMU.
 ETEXI
 
@@ -37,7 +37,7 @@ ETEXI
 
 STEXI
 @item info network
-@findex network
+@findex info network
 Show the network state.
 ETEXI
 
@@ -51,7 +51,7 @@ ETEXI
 
 STEXI
 @item info chardev
-@findex chardev
+@findex info chardev
 Show the character devices.
 ETEXI
 
@@ -66,7 +66,7 @@ ETEXI
 
 STEXI
 @item info block
-@findex block
+@findex info block
 Show info of one block device or all block devices.
 ETEXI
 
@@ -80,7 +80,7 @@ ETEXI
 
 STEXI
 @item info blockstats
-@findex blockstats
+@findex info blockstats
 Show block device statistics.
 ETEXI
 
@@ -94,7 +94,7 @@ ETEXI
 
 STEXI
 @item info block-jobs
-@findex block-jobs
+@findex info block-jobs
 Show progress of ongoing block device operations.
 ETEXI
 
@@ -108,7 +108,7 @@ ETEXI
 
 STEXI
 @item info registers
-@findex registers
+@findex info registers
 Show the cpu registers.
 ETEXI
 
@@ -125,7 +125,7 @@ ETEXI
 
 STEXI
 @item info lapic
-@findex lapic
+@findex info lapic
 Show local APIC state
 ETEXI
 
@@ -141,7 +141,7 @@ ETEXI
 
 STEXI
 @item info ioapic
-@findex ioapic
+@findex info ioapic
 Show io APIC state
 ETEXI
 
@@ -155,7 +155,7 @@ ETEXI
 
 STEXI
 @item info cpus
-@findex cpus
+@findex info cpus
 Show infos for each CPU.
 ETEXI
 
@@ -169,7 +169,7 @@ ETEXI
 
 STEXI
 @item info history
-@findex history
+@findex info history
 Show the command line history.
 ETEXI
 
@@ -183,7 +183,7 @@ ETEXI
 
 STEXI
 @item info irq
-@findex irq
+@findex info irq
 Show the interrupts statistics (if available).
 ETEXI
 
@@ -197,7 +197,7 @@ ETEXI
 
 STEXI
 @item info pic
-@findex pic
+@findex info pic
 Show i8259 (PIC) state.
 ETEXI
 
@@ -211,7 +211,7 @@ ETEXI
 
 STEXI
 @item info pci
-@findex pci
+@findex info pci
 Show PCI information.
 ETEXI
 
@@ -228,7 +228,7 @@ ETEXI
 
 STEXI
 @item info tlb
-@findex tlb
+@findex info tlb
 Show virtual to physical memory mappings.
 ETEXI
 
@@ -244,7 +244,7 @@ ETEXI
 
 STEXI
 @item info mem
-@findex mem
+@findex info mem
 Show the active virtual memory mappings.
 ETEXI
 
@@ -259,7 +259,7 @@ ETEXI
 
 STEXI
 @item info mtree
-@findex mtree
+@findex info mtree
 Show memory tree.
 ETEXI
 
@@ -275,7 +275,7 @@ ETEXI
 
 STEXI
 @item info jit
-@findex jit
+@findex info jit
 Show dynamic compiler info.
 ETEXI
 
@@ -291,7 +291,7 @@ ETEXI
 
 STEXI
 @item info opcount
-@findex opcount
+@findex info opcount
 Show dynamic compiler opcode counters
 ETEXI
 
@@ -305,7 +305,7 @@ ETEXI
 
 STEXI
 @item info kvm
-@findex kvm
+@findex info kvm
 Show KVM information.
 ETEXI
 
@@ -319,7 +319,7 @@ ETEXI
 
 STEXI
 @item info numa
-@findex numa
+@findex info numa
 Show NUMA information.
 ETEXI
 
@@ -333,7 +333,7 @@ ETEXI
 
 STEXI
 @item info usb
-@findex usb
+@findex info usb
 Show guest USB devices.
 ETEXI
 
@@ -347,7 +347,7 @@ ETEXI
 
 STEXI
 @item info usbhost
-@findex usbhost
+@findex info usbhost
 Show host USB devices.
 ETEXI
 
@@ -361,7 +361,7 @@ ETEXI
 
 STEXI
 @item info profile
-@findex profile
+@findex info profile
 Show profiling information.
 ETEXI
 
@@ -375,7 +375,7 @@ ETEXI
 
 STEXI
 @item info capture
-@findex capture
+@findex info capture
 Show capture information.
 ETEXI
 
@@ -389,7 +389,7 @@ ETEXI
 
 STEXI
 @item info snapshots
-@findex snapshots
+@findex info snapshots
 Show the currently saved VM snapshots.
 ETEXI
 
@@ -403,7 +403,7 @@ ETEXI
 
 STEXI
 @item info status
-@findex status
+@findex info status
 Show the current VM status (running|paused).
 ETEXI
 
@@ -417,7 +417,7 @@ ETEXI
 
 STEXI
 @item info mice
-@findex mice
+@findex info mice
 Show which guest mouse is receiving events.
 ETEXI
 
@@ -431,7 +431,7 @@ ETEXI
 
 STEXI
 @item info vnc
-@findex vnc
+@findex info vnc
 Show the vnc server status.
 ETEXI
 
@@ -447,7 +447,7 @@ ETEXI
 
 STEXI
 @item info spice
-@findex spice
+@findex info spice
 Show the spice server status.
 ETEXI
 
@@ -461,7 +461,7 @@ ETEXI
 
 STEXI
 @item info name
-@findex name
+@findex info name
 Show the current VM name.
 ETEXI
 
@@ -475,7 +475,7 @@ ETEXI
 
 STEXI
 @item info uuid
-@findex uuid
+@findex info uuid
 Show the current VM UUID.
 ETEXI
 
@@ -489,7 +489,7 @@ ETEXI
 
 STEXI
 @item info cpustats
-@findex cpustats
+@findex info cpustats
 Show CPU statistics.
 ETEXI
 
@@ -505,7 +505,7 @@ ETEXI
 
 STEXI
 @item info usernet
-@findex usernet
+@findex info usernet
 Show user network stack connection states.
 ETEXI
 
@@ -519,7 +519,7 @@ ETEXI
 
 STEXI
 @item info migrate
-@findex migrate
+@findex info migrate
 Show migration status.
 ETEXI
 
@@ -533,7 +533,7 @@ ETEXI
 
 STEXI
 @item info migrate_capabilities
-@findex migrate_capabilities
+@findex info migrate_capabilities
 Show current migration capabilities.
 ETEXI
 
@@ -547,7 +547,7 @@ ETEXI
 
 STEXI
 @item info migrate_parameters
-@findex migrate_parameters
+@findex info migrate_parameters
 Show current migration parameters.
 ETEXI
 
@@ -561,7 +561,7 @@ ETEXI
 
 STEXI
 @item info migrate_cache_size
-@findex migrate_cache_size
+@findex info migrate_cache_size
 Show current migration xbzrle cache size.
 ETEXI
 
@@ -575,7 +575,7 @@ ETEXI
 
 STEXI
 @item info balloon
-@findex balloon
+@findex info balloon
 Show balloon information.
 ETEXI
 
@@ -589,7 +589,7 @@ ETEXI
 
 STEXI
 @item info qtree
-@findex qtree
+@findex info qtree
 Show device tree.
 ETEXI
 
@@ -603,7 +603,7 @@ ETEXI
 
 STEXI
 @item info qdm
-@findex qdm
+@findex info qdm
 Show qdev device model list.
 ETEXI
 
@@ -617,7 +617,7 @@ ETEXI
 
 STEXI
 @item info qom-tree
-@findex qom-tree
+@findex info qom-tree
 Show QOM composition tree.
 ETEXI
 
@@ -631,7 +631,7 @@ ETEXI
 
 STEXI
 @item info roms
-@findex roms
+@findex info roms
 Show roms.
 ETEXI
 
@@ -647,7 +647,7 @@ ETEXI
 
 STEXI
 @item info trace-events
-@findex trace-events
+@findex info trace-events
 Show available trace-events & their state.
 ETEXI
 
@@ -661,7 +661,7 @@ ETEXI
 
 STEXI
 @item info tpm
-@findex tpm
+@findex info tpm
 Show the TPM device.
 ETEXI
 
@@ -675,7 +675,7 @@ ETEXI
 
 STEXI
 @item info memdev
-@findex memdev
+@findex info memdev
 Show memory backends
 ETEXI
 
@@ -689,7 +689,7 @@ ETEXI
 
 STEXI
 @item info memory-devices
-@findex memory-devices
+@findex info memory-devices
 Show memory devices.
 ETEXI
 
@@ -703,7 +703,7 @@ ETEXI
 
 STEXI
 @item info iothreads
-@findex iothreads
+@findex info iothreads
 Show iothread's identifiers.
 ETEXI
 
@@ -717,7 +717,7 @@ ETEXI
 
 STEXI
 @item info rocker @var{name}
-@findex rocker
+@findex info rocker
 Show rocker switch.
 ETEXI
 
@@ -731,7 +731,7 @@ ETEXI
 
 STEXI
 @item info rocker-ports @var{name}-ports
-@findex rocker-ports
+@findex info rocker-ports
 Show rocker ports.
 ETEXI
 
@@ -745,7 +745,7 @@ ETEXI
 
 STEXI
 @item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
-@findex rocker-of-dpa-flows
+@findex info rocker-of-dpa-flows
 Show rocker OF-DPA flow tables.
 ETEXI
 
@@ -759,7 +759,7 @@ ETEXI
 
 STEXI
 @item info rocker-of-dpa-groups @var{name} [@var{type}]
-@findex rocker-of-dpa-groups
+@findex info rocker-of-dpa-groups
 Show rocker OF-DPA groups.
 ETEXI
 
@@ -775,7 +775,7 @@ ETEXI
 
 STEXI
 @item info skeys @var{address}
-@findex skeys
+@findex info skeys
 Display the value of a storage key (s390 only)
 ETEXI
 
@@ -791,7 +791,7 @@ ETEXI
 
 STEXI
 @item info cmma @var{address}
-@findex cmma
+@findex info cmma
 Display the values of the CMMA storage attributes for a range of pages (s390 only)
 ETEXI
 
@@ -805,7 +805,7 @@ ETEXI
 
 STEXI
 @item info dump
-@findex dump
+@findex info dump
 Display the latest dump status.
 ETEXI
 
@@ -819,7 +819,7 @@ ETEXI
 
 STEXI
 @item info ramblock
-@findex ramblock
+@findex info ramblock
 Dump all the ramblocks of the system.
 ETEXI
 
@@ -833,7 +833,7 @@ ETEXI
 
 STEXI
 @item info hotpluggable-cpus
-@findex hotpluggable-cpus
+@findex info hotpluggable-cpus
 Show information about hotpluggable CPUs
 ETEXI
 
@@ -847,7 +847,7 @@ ETEXI
 
 STEXI
 @item info vm-generation-id
-@findex vm-generation-id
+@findex info vm-generation-id
 Show Virtual Machine Generation ID
 ETEXI
 
@@ -862,7 +862,7 @@ ETEXI
 
 STEXI
 @item info memory_size_summary
-@findex memory_size_summary
+@findex info memory_size_summary
 Display the amount of initially allocated and present hotpluggable (if
 enabled) memory in bytes.
 ETEXI
-- 
2.13.6

^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings Markus Armbruster
@ 2017-10-02 14:21   ` Dr. David Alan Gilbert
  2017-10-04 10:13   ` Marc-André Lureau
  1 sibling, 0 replies; 13+ messages in thread
From: Dr. David Alan Gilbert @ 2017-10-02 14:21 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel

* Markus Armbruster (armbru@redhat.com) wrote:
> Screwed up in commit da76ee7.
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

> ---
>  hmp-commands-info.hx | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index 4f1ece93e5..574db7d24e 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -730,8 +730,8 @@ ETEXI
>      },
>  
>  STEXI
> -@item info rocker_ports @var{name}-ports
> -@findex ocker-ports
> +@item info rocker-ports @var{name}-ports
> +@findex rocker-ports
>  Show rocker ports.
>  ETEXI
>  
> @@ -744,7 +744,7 @@ ETEXI
>      },
>  
>  STEXI
> -@item info rocker_of_dpa_flows @var{name} [@var{tbl_id}]
> +@item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
>  @findex rocker-of-dpa-flows
>  Show rocker OF-DPA flow tables.
>  ETEXI
> -- 
> 2.13.6
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place Markus Armbruster
@ 2017-10-02 14:31   ` Dr. David Alan Gilbert
  2017-10-04  9:50   ` Marc-André Lureau
  2017-10-04 10:13   ` Marc-André Lureau
  2 siblings, 0 replies; 13+ messages in thread
From: Dr. David Alan Gilbert @ 2017-10-02 14:31 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel

* Markus Armbruster (armbru@redhat.com) wrote:
> A command's STEXI..ETEXI stanza follows the command's initializer.
> Two commands got them backwards.  Correct that.
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

> ---
>  hmp-commands-info.hx | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
> 
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index 574db7d24e..d27d3b1227 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -837,12 +837,6 @@ STEXI
>  Show information about hotpluggable CPUs
>  ETEXI
>  
> -STEXI
> -@item info vm-generation-id
> -@findex vm-generation-id
> -Show Virtual Machine Generation ID
> -ETEXI
> -
>      {
>          .name       = "vm-generation-id",
>          .args_type  = "",
> @@ -852,10 +846,9 @@ ETEXI
>      },
>  
>  STEXI
> -@item info memory_size_summary
> -@findex memory_size_summary
> -Display the amount of initially allocated and present hotpluggable (if
> -enabled) memory in bytes.
> +@item info vm-generation-id
> +@findex vm-generation-id
> +Show Virtual Machine Generation ID
>  ETEXI
>  
>      {
> @@ -868,6 +861,13 @@ ETEXI
>      },
>  
>  STEXI
> +@item info memory_size_summary
> +@findex memory_size_summary
> +Display the amount of initially allocated and present hotpluggable (if
> +enabled) memory in bytes.
> +ETEXI
> +
> +STEXI
>  @end table
>  ETEXI
>  
> -- 
> 2.13.6
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO"
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO" Markus Armbruster
@ 2017-10-02 14:48   ` Dr. David Alan Gilbert
  2017-10-02 14:49   ` Eric Blake
  2017-10-04 10:13   ` Marc-André Lureau
  2 siblings, 0 replies; 13+ messages in thread
From: Dr. David Alan Gilbert @ 2017-10-02 14:48 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel

* Markus Armbruster (armbru@redhat.com) wrote:
> qemu-doc has the monitor commands in the "Function Index".  The "info
> FOO" are listed as "FOO" there.  List them as "info FOO" instead.
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>

> ---
>  hmp-commands-info.hx | 118 +++++++++++++++++++++++++--------------------------
>  1 file changed, 59 insertions(+), 59 deletions(-)
> 
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index d27d3b1227..54c3e5eac6 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -23,7 +23,7 @@ ETEXI
>  
>  STEXI
>  @item info version
> -@findex version
> +@findex info version
>  Show the version of QEMU.
>  ETEXI
>  
> @@ -37,7 +37,7 @@ ETEXI
>  
>  STEXI
>  @item info network
> -@findex network
> +@findex info network
>  Show the network state.
>  ETEXI
>  
> @@ -51,7 +51,7 @@ ETEXI
>  
>  STEXI
>  @item info chardev
> -@findex chardev
> +@findex info chardev
>  Show the character devices.
>  ETEXI
>  
> @@ -66,7 +66,7 @@ ETEXI
>  
>  STEXI
>  @item info block
> -@findex block
> +@findex info block
>  Show info of one block device or all block devices.
>  ETEXI
>  
> @@ -80,7 +80,7 @@ ETEXI
>  
>  STEXI
>  @item info blockstats
> -@findex blockstats
> +@findex info blockstats
>  Show block device statistics.
>  ETEXI
>  
> @@ -94,7 +94,7 @@ ETEXI
>  
>  STEXI
>  @item info block-jobs
> -@findex block-jobs
> +@findex info block-jobs
>  Show progress of ongoing block device operations.
>  ETEXI
>  
> @@ -108,7 +108,7 @@ ETEXI
>  
>  STEXI
>  @item info registers
> -@findex registers
> +@findex info registers
>  Show the cpu registers.
>  ETEXI
>  
> @@ -125,7 +125,7 @@ ETEXI
>  
>  STEXI
>  @item info lapic
> -@findex lapic
> +@findex info lapic
>  Show local APIC state
>  ETEXI
>  
> @@ -141,7 +141,7 @@ ETEXI
>  
>  STEXI
>  @item info ioapic
> -@findex ioapic
> +@findex info ioapic
>  Show io APIC state
>  ETEXI
>  
> @@ -155,7 +155,7 @@ ETEXI
>  
>  STEXI
>  @item info cpus
> -@findex cpus
> +@findex info cpus
>  Show infos for each CPU.
>  ETEXI
>  
> @@ -169,7 +169,7 @@ ETEXI
>  
>  STEXI
>  @item info history
> -@findex history
> +@findex info history
>  Show the command line history.
>  ETEXI
>  
> @@ -183,7 +183,7 @@ ETEXI
>  
>  STEXI
>  @item info irq
> -@findex irq
> +@findex info irq
>  Show the interrupts statistics (if available).
>  ETEXI
>  
> @@ -197,7 +197,7 @@ ETEXI
>  
>  STEXI
>  @item info pic
> -@findex pic
> +@findex info pic
>  Show i8259 (PIC) state.
>  ETEXI
>  
> @@ -211,7 +211,7 @@ ETEXI
>  
>  STEXI
>  @item info pci
> -@findex pci
> +@findex info pci
>  Show PCI information.
>  ETEXI
>  
> @@ -228,7 +228,7 @@ ETEXI
>  
>  STEXI
>  @item info tlb
> -@findex tlb
> +@findex info tlb
>  Show virtual to physical memory mappings.
>  ETEXI
>  
> @@ -244,7 +244,7 @@ ETEXI
>  
>  STEXI
>  @item info mem
> -@findex mem
> +@findex info mem
>  Show the active virtual memory mappings.
>  ETEXI
>  
> @@ -259,7 +259,7 @@ ETEXI
>  
>  STEXI
>  @item info mtree
> -@findex mtree
> +@findex info mtree
>  Show memory tree.
>  ETEXI
>  
> @@ -275,7 +275,7 @@ ETEXI
>  
>  STEXI
>  @item info jit
> -@findex jit
> +@findex info jit
>  Show dynamic compiler info.
>  ETEXI
>  
> @@ -291,7 +291,7 @@ ETEXI
>  
>  STEXI
>  @item info opcount
> -@findex opcount
> +@findex info opcount
>  Show dynamic compiler opcode counters
>  ETEXI
>  
> @@ -305,7 +305,7 @@ ETEXI
>  
>  STEXI
>  @item info kvm
> -@findex kvm
> +@findex info kvm
>  Show KVM information.
>  ETEXI
>  
> @@ -319,7 +319,7 @@ ETEXI
>  
>  STEXI
>  @item info numa
> -@findex numa
> +@findex info numa
>  Show NUMA information.
>  ETEXI
>  
> @@ -333,7 +333,7 @@ ETEXI
>  
>  STEXI
>  @item info usb
> -@findex usb
> +@findex info usb
>  Show guest USB devices.
>  ETEXI
>  
> @@ -347,7 +347,7 @@ ETEXI
>  
>  STEXI
>  @item info usbhost
> -@findex usbhost
> +@findex info usbhost
>  Show host USB devices.
>  ETEXI
>  
> @@ -361,7 +361,7 @@ ETEXI
>  
>  STEXI
>  @item info profile
> -@findex profile
> +@findex info profile
>  Show profiling information.
>  ETEXI
>  
> @@ -375,7 +375,7 @@ ETEXI
>  
>  STEXI
>  @item info capture
> -@findex capture
> +@findex info capture
>  Show capture information.
>  ETEXI
>  
> @@ -389,7 +389,7 @@ ETEXI
>  
>  STEXI
>  @item info snapshots
> -@findex snapshots
> +@findex info snapshots
>  Show the currently saved VM snapshots.
>  ETEXI
>  
> @@ -403,7 +403,7 @@ ETEXI
>  
>  STEXI
>  @item info status
> -@findex status
> +@findex info status
>  Show the current VM status (running|paused).
>  ETEXI
>  
> @@ -417,7 +417,7 @@ ETEXI
>  
>  STEXI
>  @item info mice
> -@findex mice
> +@findex info mice
>  Show which guest mouse is receiving events.
>  ETEXI
>  
> @@ -431,7 +431,7 @@ ETEXI
>  
>  STEXI
>  @item info vnc
> -@findex vnc
> +@findex info vnc
>  Show the vnc server status.
>  ETEXI
>  
> @@ -447,7 +447,7 @@ ETEXI
>  
>  STEXI
>  @item info spice
> -@findex spice
> +@findex info spice
>  Show the spice server status.
>  ETEXI
>  
> @@ -461,7 +461,7 @@ ETEXI
>  
>  STEXI
>  @item info name
> -@findex name
> +@findex info name
>  Show the current VM name.
>  ETEXI
>  
> @@ -475,7 +475,7 @@ ETEXI
>  
>  STEXI
>  @item info uuid
> -@findex uuid
> +@findex info uuid
>  Show the current VM UUID.
>  ETEXI
>  
> @@ -489,7 +489,7 @@ ETEXI
>  
>  STEXI
>  @item info cpustats
> -@findex cpustats
> +@findex info cpustats
>  Show CPU statistics.
>  ETEXI
>  
> @@ -505,7 +505,7 @@ ETEXI
>  
>  STEXI
>  @item info usernet
> -@findex usernet
> +@findex info usernet
>  Show user network stack connection states.
>  ETEXI
>  
> @@ -519,7 +519,7 @@ ETEXI
>  
>  STEXI
>  @item info migrate
> -@findex migrate
> +@findex info migrate
>  Show migration status.
>  ETEXI
>  
> @@ -533,7 +533,7 @@ ETEXI
>  
>  STEXI
>  @item info migrate_capabilities
> -@findex migrate_capabilities
> +@findex info migrate_capabilities
>  Show current migration capabilities.
>  ETEXI
>  
> @@ -547,7 +547,7 @@ ETEXI
>  
>  STEXI
>  @item info migrate_parameters
> -@findex migrate_parameters
> +@findex info migrate_parameters
>  Show current migration parameters.
>  ETEXI
>  
> @@ -561,7 +561,7 @@ ETEXI
>  
>  STEXI
>  @item info migrate_cache_size
> -@findex migrate_cache_size
> +@findex info migrate_cache_size
>  Show current migration xbzrle cache size.
>  ETEXI
>  
> @@ -575,7 +575,7 @@ ETEXI
>  
>  STEXI
>  @item info balloon
> -@findex balloon
> +@findex info balloon
>  Show balloon information.
>  ETEXI
>  
> @@ -589,7 +589,7 @@ ETEXI
>  
>  STEXI
>  @item info qtree
> -@findex qtree
> +@findex info qtree
>  Show device tree.
>  ETEXI
>  
> @@ -603,7 +603,7 @@ ETEXI
>  
>  STEXI
>  @item info qdm
> -@findex qdm
> +@findex info qdm
>  Show qdev device model list.
>  ETEXI
>  
> @@ -617,7 +617,7 @@ ETEXI
>  
>  STEXI
>  @item info qom-tree
> -@findex qom-tree
> +@findex info qom-tree
>  Show QOM composition tree.
>  ETEXI
>  
> @@ -631,7 +631,7 @@ ETEXI
>  
>  STEXI
>  @item info roms
> -@findex roms
> +@findex info roms
>  Show roms.
>  ETEXI
>  
> @@ -647,7 +647,7 @@ ETEXI
>  
>  STEXI
>  @item info trace-events
> -@findex trace-events
> +@findex info trace-events
>  Show available trace-events & their state.
>  ETEXI
>  
> @@ -661,7 +661,7 @@ ETEXI
>  
>  STEXI
>  @item info tpm
> -@findex tpm
> +@findex info tpm
>  Show the TPM device.
>  ETEXI
>  
> @@ -675,7 +675,7 @@ ETEXI
>  
>  STEXI
>  @item info memdev
> -@findex memdev
> +@findex info memdev
>  Show memory backends
>  ETEXI
>  
> @@ -689,7 +689,7 @@ ETEXI
>  
>  STEXI
>  @item info memory-devices
> -@findex memory-devices
> +@findex info memory-devices
>  Show memory devices.
>  ETEXI
>  
> @@ -703,7 +703,7 @@ ETEXI
>  
>  STEXI
>  @item info iothreads
> -@findex iothreads
> +@findex info iothreads
>  Show iothread's identifiers.
>  ETEXI
>  
> @@ -717,7 +717,7 @@ ETEXI
>  
>  STEXI
>  @item info rocker @var{name}
> -@findex rocker
> +@findex info rocker
>  Show rocker switch.
>  ETEXI
>  
> @@ -731,7 +731,7 @@ ETEXI
>  
>  STEXI
>  @item info rocker-ports @var{name}-ports
> -@findex rocker-ports
> +@findex info rocker-ports
>  Show rocker ports.
>  ETEXI
>  
> @@ -745,7 +745,7 @@ ETEXI
>  
>  STEXI
>  @item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
> -@findex rocker-of-dpa-flows
> +@findex info rocker-of-dpa-flows
>  Show rocker OF-DPA flow tables.
>  ETEXI
>  
> @@ -759,7 +759,7 @@ ETEXI
>  
>  STEXI
>  @item info rocker-of-dpa-groups @var{name} [@var{type}]
> -@findex rocker-of-dpa-groups
> +@findex info rocker-of-dpa-groups
>  Show rocker OF-DPA groups.
>  ETEXI
>  
> @@ -775,7 +775,7 @@ ETEXI
>  
>  STEXI
>  @item info skeys @var{address}
> -@findex skeys
> +@findex info skeys
>  Display the value of a storage key (s390 only)
>  ETEXI
>  
> @@ -791,7 +791,7 @@ ETEXI
>  
>  STEXI
>  @item info cmma @var{address}
> -@findex cmma
> +@findex info cmma
>  Display the values of the CMMA storage attributes for a range of pages (s390 only)
>  ETEXI
>  
> @@ -805,7 +805,7 @@ ETEXI
>  
>  STEXI
>  @item info dump
> -@findex dump
> +@findex info dump
>  Display the latest dump status.
>  ETEXI
>  
> @@ -819,7 +819,7 @@ ETEXI
>  
>  STEXI
>  @item info ramblock
> -@findex ramblock
> +@findex info ramblock
>  Dump all the ramblocks of the system.
>  ETEXI
>  
> @@ -833,7 +833,7 @@ ETEXI
>  
>  STEXI
>  @item info hotpluggable-cpus
> -@findex hotpluggable-cpus
> +@findex info hotpluggable-cpus
>  Show information about hotpluggable CPUs
>  ETEXI
>  
> @@ -847,7 +847,7 @@ ETEXI
>  
>  STEXI
>  @item info vm-generation-id
> -@findex vm-generation-id
> +@findex info vm-generation-id
>  Show Virtual Machine Generation ID
>  ETEXI
>  
> @@ -862,7 +862,7 @@ ETEXI
>  
>  STEXI
>  @item info memory_size_summary
> -@findex memory_size_summary
> +@findex info memory_size_summary
>  Display the amount of initially allocated and present hotpluggable (if
>  enabled) memory in bytes.
>  ETEXI
> -- 
> 2.13.6
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO"
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO" Markus Armbruster
  2017-10-02 14:48   ` Dr. David Alan Gilbert
@ 2017-10-02 14:49   ` Eric Blake
  2017-10-04 10:13   ` Marc-André Lureau
  2 siblings, 0 replies; 13+ messages in thread
From: Eric Blake @ 2017-10-02 14:49 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: dgilbert

[-- Attachment #1: Type: text/plain, Size: 615 bytes --]

On 10/02/2017 08:45 AM, Markus Armbruster wrote:
> qemu-doc has the monitor commands in the "Function Index".  The "info
> FOO" are listed as "FOO" there.  List them as "info FOO" instead.
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  hmp-commands-info.hx | 118 +++++++++++++++++++++++++--------------------------
>  1 file changed, 59 insertions(+), 59 deletions(-)

Reviewed-by: Eric Blake <eblake@redhat.com>

We have a lot of info subcommands ;)

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 619 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place Markus Armbruster
  2017-10-02 14:31   ` Dr. David Alan Gilbert
@ 2017-10-04  9:50   ` Marc-André Lureau
  2017-10-04 10:13   ` Marc-André Lureau
  2 siblings, 0 replies; 13+ messages in thread
From: Marc-André Lureau @ 2017-10-04  9:50 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: QEMU, Dr. David Alan Gilbert

On Mon, Oct 2, 2017 at 3:45 PM, Markus Armbruster <armbru@redhat.com> wrote:
> A command's STEXI..ETEXI stanza follows the command's initializer.
> Two commands got them backwards.  Correct that.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

> ---
>  hmp-commands-info.hx | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index 574db7d24e..d27d3b1227 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -837,12 +837,6 @@ STEXI
>  Show information about hotpluggable CPUs
>  ETEXI
>
> -STEXI
> -@item info vm-generation-id
> -@findex vm-generation-id
> -Show Virtual Machine Generation ID
> -ETEXI
> -
>      {
>          .name       = "vm-generation-id",
>          .args_type  = "",
> @@ -852,10 +846,9 @@ ETEXI
>      },
>
>  STEXI
> -@item info memory_size_summary
> -@findex memory_size_summary
> -Display the amount of initially allocated and present hotpluggable (if
> -enabled) memory in bytes.
> +@item info vm-generation-id
> +@findex vm-generation-id
> +Show Virtual Machine Generation ID
>  ETEXI
>
>      {
> @@ -868,6 +861,13 @@ ETEXI
>      },
>
>  STEXI
> +@item info memory_size_summary
> +@findex memory_size_summary
> +Display the amount of initially allocated and present hotpluggable (if
> +enabled) memory in bytes.
> +ETEXI
> +
> +STEXI
>  @end table
>  ETEXI
>
> --
> 2.13.6
>
>



-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO"
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO" Markus Armbruster
  2017-10-02 14:48   ` Dr. David Alan Gilbert
  2017-10-02 14:49   ` Eric Blake
@ 2017-10-04 10:13   ` Marc-André Lureau
  2 siblings, 0 replies; 13+ messages in thread
From: Marc-André Lureau @ 2017-10-04 10:13 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: QEMU, Dr. David Alan Gilbert

On Mon, Oct 2, 2017 at 3:45 PM, Markus Armbruster <armbru@redhat.com> wrote:
> qemu-doc has the monitor commands in the "Function Index".  The "info
> FOO" are listed as "FOO" there.  List them as "info FOO" instead.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>


> ---
>  hmp-commands-info.hx | 118 +++++++++++++++++++++++++--------------------------
>  1 file changed, 59 insertions(+), 59 deletions(-)
>
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index d27d3b1227..54c3e5eac6 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -23,7 +23,7 @@ ETEXI
>
>  STEXI
>  @item info version
> -@findex version
> +@findex info version
>  Show the version of QEMU.
>  ETEXI
>
> @@ -37,7 +37,7 @@ ETEXI
>
>  STEXI
>  @item info network
> -@findex network
> +@findex info network
>  Show the network state.
>  ETEXI
>
> @@ -51,7 +51,7 @@ ETEXI
>
>  STEXI
>  @item info chardev
> -@findex chardev
> +@findex info chardev
>  Show the character devices.
>  ETEXI
>
> @@ -66,7 +66,7 @@ ETEXI
>
>  STEXI
>  @item info block
> -@findex block
> +@findex info block
>  Show info of one block device or all block devices.
>  ETEXI
>
> @@ -80,7 +80,7 @@ ETEXI
>
>  STEXI
>  @item info blockstats
> -@findex blockstats
> +@findex info blockstats
>  Show block device statistics.
>  ETEXI
>
> @@ -94,7 +94,7 @@ ETEXI
>
>  STEXI
>  @item info block-jobs
> -@findex block-jobs
> +@findex info block-jobs
>  Show progress of ongoing block device operations.
>  ETEXI
>
> @@ -108,7 +108,7 @@ ETEXI
>
>  STEXI
>  @item info registers
> -@findex registers
> +@findex info registers
>  Show the cpu registers.
>  ETEXI
>
> @@ -125,7 +125,7 @@ ETEXI
>
>  STEXI
>  @item info lapic
> -@findex lapic
> +@findex info lapic
>  Show local APIC state
>  ETEXI
>
> @@ -141,7 +141,7 @@ ETEXI
>
>  STEXI
>  @item info ioapic
> -@findex ioapic
> +@findex info ioapic
>  Show io APIC state
>  ETEXI
>
> @@ -155,7 +155,7 @@ ETEXI
>
>  STEXI
>  @item info cpus
> -@findex cpus
> +@findex info cpus
>  Show infos for each CPU.
>  ETEXI
>
> @@ -169,7 +169,7 @@ ETEXI
>
>  STEXI
>  @item info history
> -@findex history
> +@findex info history
>  Show the command line history.
>  ETEXI
>
> @@ -183,7 +183,7 @@ ETEXI
>
>  STEXI
>  @item info irq
> -@findex irq
> +@findex info irq
>  Show the interrupts statistics (if available).
>  ETEXI
>
> @@ -197,7 +197,7 @@ ETEXI
>
>  STEXI
>  @item info pic
> -@findex pic
> +@findex info pic
>  Show i8259 (PIC) state.
>  ETEXI
>
> @@ -211,7 +211,7 @@ ETEXI
>
>  STEXI
>  @item info pci
> -@findex pci
> +@findex info pci
>  Show PCI information.
>  ETEXI
>
> @@ -228,7 +228,7 @@ ETEXI
>
>  STEXI
>  @item info tlb
> -@findex tlb
> +@findex info tlb
>  Show virtual to physical memory mappings.
>  ETEXI
>
> @@ -244,7 +244,7 @@ ETEXI
>
>  STEXI
>  @item info mem
> -@findex mem
> +@findex info mem
>  Show the active virtual memory mappings.
>  ETEXI
>
> @@ -259,7 +259,7 @@ ETEXI
>
>  STEXI
>  @item info mtree
> -@findex mtree
> +@findex info mtree
>  Show memory tree.
>  ETEXI
>
> @@ -275,7 +275,7 @@ ETEXI
>
>  STEXI
>  @item info jit
> -@findex jit
> +@findex info jit
>  Show dynamic compiler info.
>  ETEXI
>
> @@ -291,7 +291,7 @@ ETEXI
>
>  STEXI
>  @item info opcount
> -@findex opcount
> +@findex info opcount
>  Show dynamic compiler opcode counters
>  ETEXI
>
> @@ -305,7 +305,7 @@ ETEXI
>
>  STEXI
>  @item info kvm
> -@findex kvm
> +@findex info kvm
>  Show KVM information.
>  ETEXI
>
> @@ -319,7 +319,7 @@ ETEXI
>
>  STEXI
>  @item info numa
> -@findex numa
> +@findex info numa
>  Show NUMA information.
>  ETEXI
>
> @@ -333,7 +333,7 @@ ETEXI
>
>  STEXI
>  @item info usb
> -@findex usb
> +@findex info usb
>  Show guest USB devices.
>  ETEXI
>
> @@ -347,7 +347,7 @@ ETEXI
>
>  STEXI
>  @item info usbhost
> -@findex usbhost
> +@findex info usbhost
>  Show host USB devices.
>  ETEXI
>
> @@ -361,7 +361,7 @@ ETEXI
>
>  STEXI
>  @item info profile
> -@findex profile
> +@findex info profile
>  Show profiling information.
>  ETEXI
>
> @@ -375,7 +375,7 @@ ETEXI
>
>  STEXI
>  @item info capture
> -@findex capture
> +@findex info capture
>  Show capture information.
>  ETEXI
>
> @@ -389,7 +389,7 @@ ETEXI
>
>  STEXI
>  @item info snapshots
> -@findex snapshots
> +@findex info snapshots
>  Show the currently saved VM snapshots.
>  ETEXI
>
> @@ -403,7 +403,7 @@ ETEXI
>
>  STEXI
>  @item info status
> -@findex status
> +@findex info status
>  Show the current VM status (running|paused).
>  ETEXI
>
> @@ -417,7 +417,7 @@ ETEXI
>
>  STEXI
>  @item info mice
> -@findex mice
> +@findex info mice
>  Show which guest mouse is receiving events.
>  ETEXI
>
> @@ -431,7 +431,7 @@ ETEXI
>
>  STEXI
>  @item info vnc
> -@findex vnc
> +@findex info vnc
>  Show the vnc server status.
>  ETEXI
>
> @@ -447,7 +447,7 @@ ETEXI
>
>  STEXI
>  @item info spice
> -@findex spice
> +@findex info spice
>  Show the spice server status.
>  ETEXI
>
> @@ -461,7 +461,7 @@ ETEXI
>
>  STEXI
>  @item info name
> -@findex name
> +@findex info name
>  Show the current VM name.
>  ETEXI
>
> @@ -475,7 +475,7 @@ ETEXI
>
>  STEXI
>  @item info uuid
> -@findex uuid
> +@findex info uuid
>  Show the current VM UUID.
>  ETEXI
>
> @@ -489,7 +489,7 @@ ETEXI
>
>  STEXI
>  @item info cpustats
> -@findex cpustats
> +@findex info cpustats
>  Show CPU statistics.
>  ETEXI
>
> @@ -505,7 +505,7 @@ ETEXI
>
>  STEXI
>  @item info usernet
> -@findex usernet
> +@findex info usernet
>  Show user network stack connection states.
>  ETEXI
>
> @@ -519,7 +519,7 @@ ETEXI
>
>  STEXI
>  @item info migrate
> -@findex migrate
> +@findex info migrate
>  Show migration status.
>  ETEXI
>
> @@ -533,7 +533,7 @@ ETEXI
>
>  STEXI
>  @item info migrate_capabilities
> -@findex migrate_capabilities
> +@findex info migrate_capabilities
>  Show current migration capabilities.
>  ETEXI
>
> @@ -547,7 +547,7 @@ ETEXI
>
>  STEXI
>  @item info migrate_parameters
> -@findex migrate_parameters
> +@findex info migrate_parameters
>  Show current migration parameters.
>  ETEXI
>
> @@ -561,7 +561,7 @@ ETEXI
>
>  STEXI
>  @item info migrate_cache_size
> -@findex migrate_cache_size
> +@findex info migrate_cache_size
>  Show current migration xbzrle cache size.
>  ETEXI
>
> @@ -575,7 +575,7 @@ ETEXI
>
>  STEXI
>  @item info balloon
> -@findex balloon
> +@findex info balloon
>  Show balloon information.
>  ETEXI
>
> @@ -589,7 +589,7 @@ ETEXI
>
>  STEXI
>  @item info qtree
> -@findex qtree
> +@findex info qtree
>  Show device tree.
>  ETEXI
>
> @@ -603,7 +603,7 @@ ETEXI
>
>  STEXI
>  @item info qdm
> -@findex qdm
> +@findex info qdm
>  Show qdev device model list.
>  ETEXI
>
> @@ -617,7 +617,7 @@ ETEXI
>
>  STEXI
>  @item info qom-tree
> -@findex qom-tree
> +@findex info qom-tree
>  Show QOM composition tree.
>  ETEXI
>
> @@ -631,7 +631,7 @@ ETEXI
>
>  STEXI
>  @item info roms
> -@findex roms
> +@findex info roms
>  Show roms.
>  ETEXI
>
> @@ -647,7 +647,7 @@ ETEXI
>
>  STEXI
>  @item info trace-events
> -@findex trace-events
> +@findex info trace-events
>  Show available trace-events & their state.
>  ETEXI
>
> @@ -661,7 +661,7 @@ ETEXI
>
>  STEXI
>  @item info tpm
> -@findex tpm
> +@findex info tpm
>  Show the TPM device.
>  ETEXI
>
> @@ -675,7 +675,7 @@ ETEXI
>
>  STEXI
>  @item info memdev
> -@findex memdev
> +@findex info memdev
>  Show memory backends
>  ETEXI
>
> @@ -689,7 +689,7 @@ ETEXI
>
>  STEXI
>  @item info memory-devices
> -@findex memory-devices
> +@findex info memory-devices
>  Show memory devices.
>  ETEXI
>
> @@ -703,7 +703,7 @@ ETEXI
>
>  STEXI
>  @item info iothreads
> -@findex iothreads
> +@findex info iothreads
>  Show iothread's identifiers.
>  ETEXI
>
> @@ -717,7 +717,7 @@ ETEXI
>
>  STEXI
>  @item info rocker @var{name}
> -@findex rocker
> +@findex info rocker
>  Show rocker switch.
>  ETEXI
>
> @@ -731,7 +731,7 @@ ETEXI
>
>  STEXI
>  @item info rocker-ports @var{name}-ports
> -@findex rocker-ports
> +@findex info rocker-ports
>  Show rocker ports.
>  ETEXI
>
> @@ -745,7 +745,7 @@ ETEXI
>
>  STEXI
>  @item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
> -@findex rocker-of-dpa-flows
> +@findex info rocker-of-dpa-flows
>  Show rocker OF-DPA flow tables.
>  ETEXI
>
> @@ -759,7 +759,7 @@ ETEXI
>
>  STEXI
>  @item info rocker-of-dpa-groups @var{name} [@var{type}]
> -@findex rocker-of-dpa-groups
> +@findex info rocker-of-dpa-groups
>  Show rocker OF-DPA groups.
>  ETEXI
>
> @@ -775,7 +775,7 @@ ETEXI
>
>  STEXI
>  @item info skeys @var{address}
> -@findex skeys
> +@findex info skeys
>  Display the value of a storage key (s390 only)
>  ETEXI
>
> @@ -791,7 +791,7 @@ ETEXI
>
>  STEXI
>  @item info cmma @var{address}
> -@findex cmma
> +@findex info cmma
>  Display the values of the CMMA storage attributes for a range of pages (s390 only)
>  ETEXI
>
> @@ -805,7 +805,7 @@ ETEXI
>
>  STEXI
>  @item info dump
> -@findex dump
> +@findex info dump
>  Display the latest dump status.
>  ETEXI
>
> @@ -819,7 +819,7 @@ ETEXI
>
>  STEXI
>  @item info ramblock
> -@findex ramblock
> +@findex info ramblock
>  Dump all the ramblocks of the system.
>  ETEXI
>
> @@ -833,7 +833,7 @@ ETEXI
>
>  STEXI
>  @item info hotpluggable-cpus
> -@findex hotpluggable-cpus
> +@findex info hotpluggable-cpus
>  Show information about hotpluggable CPUs
>  ETEXI
>
> @@ -847,7 +847,7 @@ ETEXI
>
>  STEXI
>  @item info vm-generation-id
> -@findex vm-generation-id
> +@findex info vm-generation-id
>  Show Virtual Machine Generation ID
>  ETEXI
>
> @@ -862,7 +862,7 @@ ETEXI
>
>  STEXI
>  @item info memory_size_summary
> -@findex memory_size_summary
> +@findex info memory_size_summary
>  Display the amount of initially allocated and present hotpluggable (if
>  enabled) memory in bytes.
>  ETEXI
> --
> 2.13.6
>
>



-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place Markus Armbruster
  2017-10-02 14:31   ` Dr. David Alan Gilbert
  2017-10-04  9:50   ` Marc-André Lureau
@ 2017-10-04 10:13   ` Marc-André Lureau
  2 siblings, 0 replies; 13+ messages in thread
From: Marc-André Lureau @ 2017-10-04 10:13 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: QEMU, Dr. David Alan Gilbert

On Mon, Oct 2, 2017 at 3:45 PM, Markus Armbruster <armbru@redhat.com> wrote:
> A command's STEXI..ETEXI stanza follows the command's initializer.
> Two commands got them backwards.  Correct that.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>


> ---
>  hmp-commands-info.hx | 20 ++++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index 574db7d24e..d27d3b1227 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -837,12 +837,6 @@ STEXI
>  Show information about hotpluggable CPUs
>  ETEXI
>
> -STEXI
> -@item info vm-generation-id
> -@findex vm-generation-id
> -Show Virtual Machine Generation ID
> -ETEXI
> -
>      {
>          .name       = "vm-generation-id",
>          .args_type  = "",
> @@ -852,10 +846,9 @@ ETEXI
>      },
>
>  STEXI
> -@item info memory_size_summary
> -@findex memory_size_summary
> -Display the amount of initially allocated and present hotpluggable (if
> -enabled) memory in bytes.
> +@item info vm-generation-id
> +@findex vm-generation-id
> +Show Virtual Machine Generation ID
>  ETEXI
>
>      {
> @@ -868,6 +861,13 @@ ETEXI
>      },
>
>  STEXI
> +@item info memory_size_summary
> +@findex memory_size_summary
> +Display the amount of initially allocated and present hotpluggable (if
> +enabled) memory in bytes.
> +ETEXI
> +
> +STEXI
>  @end table
>  ETEXI
>
> --
> 2.13.6
>
>



-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings Markus Armbruster
  2017-10-02 14:21   ` Dr. David Alan Gilbert
@ 2017-10-04 10:13   ` Marc-André Lureau
  1 sibling, 0 replies; 13+ messages in thread
From: Marc-André Lureau @ 2017-10-04 10:13 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: QEMU, Dr. David Alan Gilbert

On Mon, Oct 2, 2017 at 3:45 PM, Markus Armbruster <armbru@redhat.com> wrote:
> Screwed up in commit da76ee7.
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>


> ---
>  hmp-commands-info.hx | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/hmp-commands-info.hx b/hmp-commands-info.hx
> index 4f1ece93e5..574db7d24e 100644
> --- a/hmp-commands-info.hx
> +++ b/hmp-commands-info.hx
> @@ -730,8 +730,8 @@ ETEXI
>      },
>
>  STEXI
> -@item info rocker_ports @var{name}-ports
> -@findex ocker-ports
> +@item info rocker-ports @var{name}-ports
> +@findex rocker-ports
>  Show rocker ports.
>  ETEXI
>
> @@ -744,7 +744,7 @@ ETEXI
>      },
>
>  STEXI
> -@item info rocker_of_dpa_flows @var{name} [@var{tbl_id}]
> +@item info rocker-of-dpa-flows @var{name} [@var{tbl_id}]
>  @findex rocker-of-dpa-flows
>  Show rocker OF-DPA flow tables.
>  ETEXI
> --
> 2.13.6
>
>



-- 
Marc-André Lureau

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes
  2017-10-02 13:45 [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Markus Armbruster
                   ` (2 preceding siblings ...)
  2017-10-02 13:45 ` [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO" Markus Armbruster
@ 2017-10-05  9:09 ` Dr. David Alan Gilbert
  3 siblings, 0 replies; 13+ messages in thread
From: Dr. David Alan Gilbert @ 2017-10-05  9:09 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel

* Markus Armbruster (armbru@redhat.com) wrote:
> Markus Armbruster (3):
>   hmp-commands-info: Fix "info rocker-FOO" misspellings
>   hmp-commands-info: Move Texinfo stanzas to conventional place
>   hmp-commands-info: Change "@findex FOO" to "@findex info FOO"

Queued for HMP

>  hmp-commands-info.hx | 138 +++++++++++++++++++++++++--------------------------
>  1 file changed, 69 insertions(+), 69 deletions(-)
> 
> -- 
> 2.13.6
> 
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2017-10-05  9:09 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-02 13:45 [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Markus Armbruster
2017-10-02 13:45 ` [Qemu-devel] [PATCH 1/3] hmp-commands-info: Fix "info rocker-FOO" misspellings Markus Armbruster
2017-10-02 14:21   ` Dr. David Alan Gilbert
2017-10-04 10:13   ` Marc-André Lureau
2017-10-02 13:45 ` [Qemu-devel] [PATCH 2/3] hmp-commands-info: Move Texinfo stanzas to conventional place Markus Armbruster
2017-10-02 14:31   ` Dr. David Alan Gilbert
2017-10-04  9:50   ` Marc-André Lureau
2017-10-04 10:13   ` Marc-André Lureau
2017-10-02 13:45 ` [Qemu-devel] [PATCH 3/3] hmp-commands-info: Change "@findex FOO" to "@findex info FOO" Markus Armbruster
2017-10-02 14:48   ` Dr. David Alan Gilbert
2017-10-02 14:49   ` Eric Blake
2017-10-04 10:13   ` Marc-André Lureau
2017-10-05  9:09 ` [Qemu-devel] [PATCH 0/3] hmp-commands-info: Texinfo fixes Dr. David Alan Gilbert

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.