From: Adam Litke Date: Mon, 22 Feb 2010 16:51:20 +0000 (-0600) Subject: Fix hanging user monitor when using balloon command X-Git-Tag: qemu-xen-4.3.0-rc1~5517 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=93d67ee69d6104976961fbc98654872de28a5c96;p=qemu-upstream-4.6-testing.git Fix hanging user monitor when using balloon command This patch application failed. My patch adds a cb() call in do_balloon(), but the change in git has added the cb() call to do_info_balloon(). That is causing qemu segfaults. Applying the following should correct the damage. Thanks. Fix for commit: 5c366a8a3d7ac71beda8499caa815cb3ea95eb58 The cb() call is needed in do_balloon(), not do_info_balloon(). Signed-off-by: Adam Litke Signed-off-by: Anthony Liguori --- diff --git a/monitor.c b/monitor.c index 19470d1c0..61a072b1a 100644 --- a/monitor.c +++ b/monitor.c @@ -2307,7 +2307,6 @@ static int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque) return -1; } - cb(opaque, NULL); return 0; } @@ -2330,6 +2329,7 @@ static int do_balloon(Monitor *mon, const QDict *params, return -1; } + cb(opaque, NULL); return 0; }