qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Update leftover comments that mention Texinfo
@ 2020-09-29  7:58 Markus Armbruster
  2020-09-29  7:58 ` [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo Markus Armbruster
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Markus Armbruster @ 2020-09-29  7:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, peter.maydell

Markus Armbruster (2):
  qemu-img-cmds.hx: Update comment that mentions Texinfo
  target/i386/cpu: Update comment that mentions Texinfo

 target/i386/cpu.c | 3 ++-
 qemu-img-cmds.hx  | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

-- 
2.26.2



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

* [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo
  2020-09-29  7:58 [PATCH 0/2] Update leftover comments that mention Texinfo Markus Armbruster
@ 2020-09-29  7:58 ` Markus Armbruster
  2020-09-30 11:27   ` Laurent Vivier
  2020-09-29  7:58 ` [PATCH 2/2] target/i386/cpu: " Markus Armbruster
  2020-09-29  9:16 ` [PATCH 0/2] Update leftover comments that mention Texinfo Philippe Mathieu-Daudé
  2 siblings, 1 reply; 6+ messages in thread
From: Markus Armbruster @ 2020-09-29  7:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, peter.maydell

Missed in 3c95fdef94 "Update comments in .hx files that mention
Texinfo".

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 qemu-img-cmds.hx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx
index b89c019b76..cab8234235 100644
--- a/qemu-img-cmds.hx
+++ b/qemu-img-cmds.hx
@@ -1,5 +1,5 @@
 HXCOMM Keep the list of subcommands sorted by name.
-HXCOMM Use DEFHEADING() to define headings in both help text and texi
+HXCOMM Use DEFHEADING() to define headings in both help text and rST
 HXCOMM Text between SRST and ERST are copied to rST version and
 HXCOMM discarded from C version
 HXCOMM DEF(command, callback, arg_string) is used to construct
-- 
2.26.2



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

* [PATCH 2/2] target/i386/cpu: Update comment that mentions Texinfo
  2020-09-29  7:58 [PATCH 0/2] Update leftover comments that mention Texinfo Markus Armbruster
  2020-09-29  7:58 ` [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo Markus Armbruster
@ 2020-09-29  7:58 ` Markus Armbruster
  2020-09-30 11:29   ` Laurent Vivier
  2020-09-29  9:16 ` [PATCH 0/2] Update leftover comments that mention Texinfo Philippe Mathieu-Daudé
  2 siblings, 1 reply; 6+ messages in thread
From: Markus Armbruster @ 2020-09-29  7:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, peter.maydell

Missed in commit 41fba1618b "docs/system: convert the documentation of
deprecated features to rST."

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 target/i386/cpu.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 3ffd877dd5..aa0c38c793 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -4127,7 +4127,8 @@ static PropValue tcg_default_props[] = {
  * We resolve CPU model aliases using -v1 when using "-machine
  * none", but this is just for compatibility while libvirt isn't
  * adapted to resolve CPU model versions before creating VMs.
- * See "Runnability guarantee of CPU models" at * qemu-deprecated.texi.
+ * See "Runnability guarantee of CPU models" at
+ * docs/system/deprecated.rst.
  */
 X86CPUVersion default_cpu_version = 1;
 
-- 
2.26.2



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

* Re: [PATCH 0/2] Update leftover comments that mention Texinfo
  2020-09-29  7:58 [PATCH 0/2] Update leftover comments that mention Texinfo Markus Armbruster
  2020-09-29  7:58 ` [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo Markus Armbruster
  2020-09-29  7:58 ` [PATCH 2/2] target/i386/cpu: " Markus Armbruster
@ 2020-09-29  9:16 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-29  9:16 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: qemu-trivial, peter.maydell

On 9/29/20 9:58 AM, Markus Armbruster wrote:
> Markus Armbruster (2):
>   qemu-img-cmds.hx: Update comment that mentions Texinfo
>   target/i386/cpu: Update comment that mentions Texinfo
> 
>  target/i386/cpu.c | 3 ++-
>  qemu-img-cmds.hx  | 2 +-
>  2 files changed, 3 insertions(+), 2 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>




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

* Re: [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo
  2020-09-29  7:58 ` [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo Markus Armbruster
@ 2020-09-30 11:27   ` Laurent Vivier
  0 siblings, 0 replies; 6+ messages in thread
From: Laurent Vivier @ 2020-09-30 11:27 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: qemu-trivial, peter.maydell

Le 29/09/2020 à 09:58, Markus Armbruster a écrit :
> Missed in 3c95fdef94 "Update comments in .hx files that mention
> Texinfo".
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  qemu-img-cmds.hx | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/qemu-img-cmds.hx b/qemu-img-cmds.hx
> index b89c019b76..cab8234235 100644
> --- a/qemu-img-cmds.hx
> +++ b/qemu-img-cmds.hx
> @@ -1,5 +1,5 @@
>  HXCOMM Keep the list of subcommands sorted by name.
> -HXCOMM Use DEFHEADING() to define headings in both help text and texi
> +HXCOMM Use DEFHEADING() to define headings in both help text and rST
>  HXCOMM Text between SRST and ERST are copied to rST version and
>  HXCOMM discarded from C version
>  HXCOMM DEF(command, callback, arg_string) is used to construct
> 


Applied to my trivial-patches branch.

Thanks,


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

* Re: [PATCH 2/2] target/i386/cpu: Update comment that mentions Texinfo
  2020-09-29  7:58 ` [PATCH 2/2] target/i386/cpu: " Markus Armbruster
@ 2020-09-30 11:29   ` Laurent Vivier
  0 siblings, 0 replies; 6+ messages in thread
From: Laurent Vivier @ 2020-09-30 11:29 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: qemu-trivial, peter.maydell

Le 29/09/2020 à 09:58, Markus Armbruster a écrit :
> Missed in commit 41fba1618b "docs/system: convert the documentation of
> deprecated features to rST."
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  target/i386/cpu.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/target/i386/cpu.c b/target/i386/cpu.c
> index 3ffd877dd5..aa0c38c793 100644
> --- a/target/i386/cpu.c
> +++ b/target/i386/cpu.c
> @@ -4127,7 +4127,8 @@ static PropValue tcg_default_props[] = {
>   * We resolve CPU model aliases using -v1 when using "-machine
>   * none", but this is just for compatibility while libvirt isn't
>   * adapted to resolve CPU model versions before creating VMs.
> - * See "Runnability guarantee of CPU models" at * qemu-deprecated.texi.
> + * See "Runnability guarantee of CPU models" at
> + * docs/system/deprecated.rst.
>   */
>  X86CPUVersion default_cpu_version = 1;
>  
> 

Applied to my trivial-patches branch.

Thanks,
Laurent



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

end of thread, other threads:[~2020-09-30 11:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-29  7:58 [PATCH 0/2] Update leftover comments that mention Texinfo Markus Armbruster
2020-09-29  7:58 ` [PATCH 1/2] qemu-img-cmds.hx: Update comment that mentions Texinfo Markus Armbruster
2020-09-30 11:27   ` Laurent Vivier
2020-09-29  7:58 ` [PATCH 2/2] target/i386/cpu: " Markus Armbruster
2020-09-30 11:29   ` Laurent Vivier
2020-09-29  9:16 ` [PATCH 0/2] Update leftover comments that mention Texinfo Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).