qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Amit Shah <amit.shah@redhat.com>
Cc: qemu list <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 2/4] virtio-serial: Add description fields for qdev properties
Date: Mon, 10 Jan 2011 15:47:25 +0100	[thread overview]
Message-ID: <m3aaj8byte.fsf@blackfin.pond.sub.org> (raw)
In-Reply-To: <fac733b8215a845edf2ac8d2fd70c1e32cc1ef56.1294143628.git.amit.shah@redhat.com> (Amit Shah's message of "Tue, 4 Jan 2011 17:52:21 +0530")

Amit Shah <amit.shah@redhat.com> writes:

> Document the parameters for the virtserialport and virtioconsole
> devices.
>
> Example:
>
> $ ./x86_64-softmmu/qemu-system-x86_64 -device virtserialport,?
> virtserialport.nr=uint32, The 'number' for the port for \
> predictable port numbers. Use this to spawn ports if you \
> plan to migrate the guest.
>
> virtserialport.chardev=chr, The chardev to associate this port with.
>
> virtserialport.name=string, Name for the port that's exposed to \
> the guest for port discovery.
>
> Signed-off-by: Amit Shah <amit.shah@redhat.com>
> ---
>  hw/virtio-console.c |   17 ++++++++++-------
>  hw/virtio-serial.h  |   13 +++++++++++++
>  2 files changed, 23 insertions(+), 7 deletions(-)
>
> diff --git a/hw/virtio-console.c b/hw/virtio-console.c
> index ccd277a..8a99a99 100644
> --- a/hw/virtio-console.c
> +++ b/hw/virtio-console.c
> @@ -95,11 +95,13 @@ static VirtIOSerialPortInfo virtconsole_info = {
>      .init          = virtconsole_initfn,
>      .exit          = virtconsole_exitfn,
>      .qdev.props = (Property[]) {
> -        DEFINE_PROP_UINT8("is_console", VirtConsole, port.is_console, 1, ""),
> +        DEFINE_PROP_UINT8("is_console", VirtConsole, port.is_console, 1,
> +                          PROP_VIRTSERIAL_IS_CONSOLE_DESC),
>          DEFINE_PROP_UINT32("nr", VirtConsole, port.id, VIRTIO_CONSOLE_BAD_ID,
> -                           ""),
> -        DEFINE_PROP_CHR("chardev", VirtConsole, chr, ""),
> -        DEFINE_PROP_STRING("name", VirtConsole, port.name, ""),
> +                           PROP_VIRTSERIAL_NR_DESC),
> +        DEFINE_PROP_CHR("chardev", VirtConsole, chr, PROP_VIRTSERIAL_CHR_DESC),
> +        DEFINE_PROP_STRING("name", VirtConsole, port.name,
> +                           PROP_VIRTSERIAL_NAME_DESC),
>          DEFINE_PROP_END_OF_LIST(),
>      },
>  };
> @@ -133,9 +135,10 @@ static VirtIOSerialPortInfo virtserialport_info = {
>      .exit          = virtconsole_exitfn,
>      .qdev.props = (Property[]) {
>          DEFINE_PROP_UINT32("nr", VirtConsole, port.id, VIRTIO_CONSOLE_BAD_ID,
> -                           ""),
> -        DEFINE_PROP_CHR("chardev", VirtConsole, chr, ""),
> -        DEFINE_PROP_STRING("name", VirtConsole, port.name, ""),
> +                           PROP_VIRTSERIAL_NR_DESC),
> +        DEFINE_PROP_CHR("chardev", VirtConsole, chr, PROP_VIRTSERIAL_CHR_DESC),
> +        DEFINE_PROP_STRING("name", VirtConsole, port.name,
> +                           PROP_VIRTSERIAL_NAME_DESC),
>          DEFINE_PROP_END_OF_LIST(),
>      },
>  };
> diff --git a/hw/virtio-serial.h b/hw/virtio-serial.h
> index ff08c40..187d5e4 100644
> --- a/hw/virtio-serial.h
> +++ b/hw/virtio-serial.h
> @@ -57,6 +57,19 @@ struct virtio_console_control {
>  
>  /* == In-qemu interface == */
>  
> +#define PROP_VIRTSERIAL_IS_CONSOLE_DESC                                 \
> +    "An hvc console will be spawned in the guest if this is set."
> +
> +#define PROP_VIRTSERIAL_NR_DESC                                         \
> +    "The 'number' for the port for predictable port numbers. Use this to " \
> +    "spawn ports if you plan to migrate the guest."
> +
> +#define PROP_VIRTSERIAL_CHR_DESC                \
> +    "The chardev to associate this port with."
> +
> +#define PROP_VIRTSERIAL_NAME_DESC                \
> +    "Name for the port that's exposed to the guest for port discovery."
> +
>  typedef struct VirtIOSerial VirtIOSerial;
>  typedef struct VirtIOSerialBus VirtIOSerialBus;
>  typedef struct VirtIOSerialPort VirtIOSerialPort;

Let me elaborate on my comment asking for prettier output.  Here's how I
expect -virtconsole,\? look like with your code:

virtconsole.is_console=uint8, An hvc console will be spawned in the guest if this is set.
virtconsole.nr=uint32, The 'number' for the port for predictable port numbers. Use this to spawn ports if you plan to migrate the guest.
virtconsole.chardev=chr, The chardev to associate this port with.
virtconsole.name=string, Name for the port that's exposed to the guest for port discovery.

Long lines, hard to read.

By the way, properties without a description are printed with a trailing
", ".  I find that irritating.

We can do better by adopting suitable conventions for the help text, say
"first line is a brief description (50 characters max), like a headline
(no sentence-ending period), following lines (if any) are 70 characters
max."

Then we print it like this:

virtconsole.nr=uint32    First line, 50 characters max., just like this one
     More lines (if any)

When the X=Y part is long, we can break like this:

virtconsole.is_console=uint8
                         First line, 50 characters max., just like this one
     More lines (if any)

or maybe

virtconsole.is_console=uint8
     First line, 50 characters max., just like this one
     More lines (if any)

  reply	other threads:[~2011-01-10 14:47 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-04 12:22 [Qemu-devel] [PATCH 0/4] [RESEND] [REBASE] Auto-document qdev devices Amit Shah
2011-01-04 12:22 ` [Qemu-devel] [PATCH 1/4] qdev: Add a description field for qdev properties for documentation Amit Shah
2011-01-10 14:31   ` Markus Armbruster
2011-01-11  0:01     ` Chris Krumme
2011-01-11  5:16       ` Amit Shah
2011-01-04 12:22 ` [Qemu-devel] [PATCH 2/4] virtio-serial: Add description fields for qdev properties Amit Shah
2011-01-10 14:47   ` Markus Armbruster [this message]
2011-01-04 12:22 ` [Qemu-devel] [PATCH 3/4] net.h: Add description fields for qdev properites Amit Shah
2011-01-04 12:22 ` [Qemu-devel] [PATCH 4/4] block_int.h: Provide documentation for common block qdev properties Amit Shah
2011-01-10 14:50 ` [Qemu-devel] [PATCH 0/4] [RESEND] [REBASE] Auto-document qdev devices Markus Armbruster
  -- strict thread matches above, loose matches on Subject: below --
2010-11-25 17:31 Amit Shah
2010-11-25 17:31 ` [Qemu-devel] [PATCH 2/4] virtio-serial: Add description fields for qdev properties Amit Shah
2010-09-15 12:36 [Qemu-devel] [PATCH 0/4] First steps towards documenting qdev devices/options Amit Shah
2010-09-15 12:36 ` [Qemu-devel] [PATCH 2/4] virtio-serial: Add description fields for qdev properties Amit Shah
2010-09-28 13:48   ` Markus Armbruster
2010-09-28 14:00     ` Amit Shah

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m3aaj8byte.fsf@blackfin.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=amit.shah@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).