All of lore.kernel.org
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: Luiz Capitulino <lcapitulino@redhat.com>
Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org, avi@redhat.com
Subject: Re: [Qemu-devel] [PATCH 4/5] monitor: Port do_info_balloon() to QObject
Date: Wed, 23 Sep 2009 17:49:42 +0200	[thread overview]
Message-ID: <87vdj9iru1.fsf@pike.pond.sub.org> (raw)
In-Reply-To: <1251987859-20254-5-git-send-email-lcapitulino@redhat.com> (Luiz Capitulino's message of "Thu\, 3 Sep 2009 11\:24\:18 -0300")

Luiz Capitulino <lcapitulino@redhat.com> writes:

> do_info_balloon() returns 0 on success or -1 when the 'balloon'
> value could not be queried.
>
> The returned data is always a QString.
>
> This also introduces monitor_print_qobject(), which can be
> used as a standard way to print QObjects in the user protocol
> format.
>
> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
> ---
>  monitor.c |   41 +++++++++++++++++++++++++++++++++--------
>  1 files changed, 33 insertions(+), 8 deletions(-)
>
> diff --git a/monitor.c b/monitor.c
> index f9f3cbd..545833d 100644
> --- a/monitor.c
> +++ b/monitor.c
[...]
> @@ -1586,18 +1602,27 @@ static void do_balloon(Monitor *mon, const QDict *qdict)
>      qemu_balloon(target << 20);
>  }
>  
> -static void do_info_balloon(Monitor *mon)
> +static int do_info_balloon(Monitor *mon, QObject **ret_data)
>  {
> +    QString *qs;
>      ram_addr_t actual;
> +    int ret = -1;
>  
>      actual = qemu_balloon_status();
> -    if (kvm_enabled() && !kvm_has_sync_mmu())
> -        monitor_printf(mon, "Using KVM without synchronous MMU, "
> +    if (kvm_enabled() && !kvm_has_sync_mmu()) {
> +        qs = qstring_from_str("Using KVM without synchronous MMU, "
>                         "ballooning disabled\n");
> -    else if (actual == 0)
> -        monitor_printf(mon, "Ballooning not activated in VM\n");
> -    else
> -        monitor_printf(mon, "balloon: actual=%d\n", (int)(actual >> 20));
> +    } else if (actual == 0) {
> +        qs = qstring_from_str("Ballooning not activated in VM\n");
> +    } else {
> +        char buf[128];
> +        sprintf(buf, "balloon: actual=%d\n", (int)(actual >> 20));
> +        qs = qstring_from_str(buf);
> +        ret = 0;

If this pattern turns out to be common, let's create qstring_printf() to
print to a new qstring.

> +    }
> +
> +    *ret_data = QOBJECT(qs);
> +    return ret;
>  }
>  
>  static qemu_acl *find_acl(Monitor *mon, const char *name)
> @@ -1898,7 +1923,7 @@ static const mon_cmd_t info_cmds[] = {
>        "", "show user network stack connection states", },
>  #endif
>      { "migrate", "", do_info_migrate, NULL, "", "show migration status" },
> -    { "balloon", "", do_info_balloon, NULL,
> +    { "balloon", "", do_info_balloon, monitor_print_qobject,
>        "", "show balloon information" },
>      { "qtree", "", do_info_qtree, NULL,
>        "", "show device tree" },

  reply	other threads:[~2009-09-23 15:49 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-03 14:24 [Qemu-devel] [RFC 0/5] Monitor handlers convertion to QObject Luiz Capitulino
2009-09-03 14:24 ` [Qemu-devel] [PATCH 1/5] monitor: Add user_print() to mon_cmd_t Luiz Capitulino
2009-09-03 18:55   ` [Qemu-devel] " Juan Quintela
2009-09-03 18:59     ` Luiz Capitulino
2009-09-03 14:24 ` [Qemu-devel] [PATCH 2/5] monitor: Handle new and old style handlers Luiz Capitulino
2009-09-03 14:24 ` [Qemu-devel] [PATCH 3/5] monitor: Port do_info() to QObject Luiz Capitulino
2009-09-03 14:24 ` [Qemu-devel] [PATCH 4/5] monitor: Port do_info_balloon() " Luiz Capitulino
2009-09-23 15:49   ` Markus Armbruster [this message]
2009-09-23 16:09     ` Luiz Capitulino
2009-09-03 14:24 ` [Qemu-devel] [PATCH 5/5] monitor: Port do_balloon() " Luiz Capitulino
2009-09-03 20:30 ` [Qemu-devel] [RFC 0/5] Monitor handlers convertion " Gerd Hoffmann
2009-09-03 22:12   ` Luiz Capitulino

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=87vdj9iru1.fsf@pike.pond.sub.org \
    --to=armbru@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=avi@redhat.com \
    --cc=lcapitulino@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 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.