On 02/12/2010 02:55 PM, Adam Litke wrote:
Arghh... Adding missing S-O-B

Hi Anthony.  I wonder if there was a problem when importing my async
command handler patchset.  Since the 'balloon' command completes
immediately, it must call the completion callback before returning.
That call was missing but is added by the patch below.

Signed-off-by: Adam Litke<a...@us.ibm.com>

Applied.  Thanks.

Regards,

Anthony Liguori
diff --git a/monitor.c b/monitor.c
index ae125b8..f94794d 100644
--- a/monitor.c
+++ b/monitor.c
@@ -2258,6 +2258,7 @@ static int do_balloon(Monitor *mon, const QDict *params,
          return -1;
      }

+    cb(opaque, NULL);
      return 0;
  }




Reply via email to