qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 11/14] monitor: Convert do_balloon() to QObject


From: Luiz Capitulino
Subject: [Qemu-devel] [PATCH 11/14] monitor: Convert do_balloon() to QObject
Date: Thu, 1 Oct 2009 12:50:42 -0300

It is important to observe that it never fails, as big refactoring
of the virtio code would be needed to get the proper error code.

Signed-off-by: Luiz Capitulino <address@hidden>
---
 monitor.c       |    7 +++++--
 qemu-monitor.hx |    4 ++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/monitor.c b/monitor.c
index 87fd91c..852e558 100644
--- a/monitor.c
+++ b/monitor.c
@@ -1636,8 +1636,11 @@ static void do_info_status(Monitor *mon)
        monitor_printf(mon, "VM status: paused\n");
 }
 
-
-static void do_balloon(Monitor *mon, const QDict *qdict)
+/**
+ * do_balloon(): Request VM to change its memory allocation
+ */
+static void do_balloon(Monitor *mon, const QDict *qdict, QObject **ret_data,
+                       MonitorError *error)
 {
     int value = qdict_get_int(qdict, "value");
     ram_addr_t target = value;
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index e848b1d..7cde9d9 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -936,8 +936,8 @@ ETEXI
         .name       = "balloon",
         .args_type  = "value:i",
         .handler    = do_balloon,
-        .user_print = NULL,
-        .user_error = NULL,
+        .user_print = monitor_user_noop,
+        .user_error = monitor_error_noop,
         .params     = "target",
         .help       = "request VM to change it's memory allocation (in MB)"
     },
-- 
1.6.5.rc2





reply via email to

[Prev in Thread] Current Thread [Next in Thread]