From: Luiz Capitulino <lcapitulino@redhat.com>
To: qemu-devel@nongnu.org
Cc: aliguori@us.ibm.com, avi@redhat.com
Subject: [Qemu-devel] [PATCH 5/5] monitor: Port do_balloon() to QObject
Date: Thu, 3 Sep 2009 11:24:19 -0300 [thread overview]
Message-ID: <1251987859-20254-6-git-send-email-lcapitulino@redhat.com> (raw)
In-Reply-To: <1251987859-20254-1-git-send-email-lcapitulino@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
---
monitor.c | 3 ++-
qemu-monitor.hx | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/monitor.c b/monitor.c
index 545833d..71aef60 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1595,11 +1595,12 @@ static void do_info_status(Monitor *mon)
}
-static void do_balloon(Monitor *mon, const QDict *qdict)
+static int do_balloon(Monitor *mon, const QDict *qdict, QObject **ret_data)
{
int value = qdict_get_int(qdict, "value");
ram_addr_t target = value;
qemu_balloon(target << 20);
+ return 0;
}
static int do_info_balloon(Monitor *mon, QObject **ret_data)
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 44402c5..eec6731 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -552,7 +552,7 @@ STEXI
Redirect TCP or UDP connections from host to guest (requires -net user).
ETEXI
- { "balloon", "value:i", do_balloon, NULL,
+ { "balloon", "value:i", do_balloon, monitor_print_nothing,
"target", "request VM to change it's memory allocation (in MB)" },
STEXI
@item balloon @var{value}
--
1.6.4.2.253.g0b1fac
next prev parent reply other threads:[~2009-09-03 14:24 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
2009-09-23 16:09 ` Luiz Capitulino
2009-09-03 14:24 ` Luiz Capitulino [this message]
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=1251987859-20254-6-git-send-email-lcapitulino@redhat.com \
--to=lcapitulino@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=avi@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).