diff options
author | Adam Litke <agl@us.ibm.com> | 2010-02-12 14:55:56 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-02-19 15:32:15 -0600 |
commit | 5c366a8a3d7ac71beda8499caa815cb3ea95eb58 (patch) | |
tree | c498eb10139ea86fe10082ac7026c8782029bd83 /monitor.c | |
parent | 068b332a6517b082b67b50f62f38f1952329d201 (diff) | |
download | qemu-5c366a8a3d7ac71beda8499caa815cb3ea95eb58.tar.gz qemu-5c366a8a3d7ac71beda8499caa815cb3ea95eb58.tar.bz2 qemu-5c366a8a3d7ac71beda8499caa815cb3ea95eb58.zip |
Fix hanging user monitor when using balloon command
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 <agl@us.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2309,6 +2309,7 @@ static int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque) return -1; } + cb(opaque, NULL); return 0; } |