diff options
author | Amit Shah <amit.shah@redhat.com> | 2011-09-09 14:30:39 +0530 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-09 12:58:16 -0500 |
commit | 8a7d552cb3684570491a5ecaa8b78818404ed2fb (patch) | |
tree | 8e6c66860acefd6cb86a8aa7feb864038ec97020 /balloon.c | |
parent | e89720b116131938fe3d4931302f69a28249c934 (diff) | |
download | qemu-8a7d552cb3684570491a5ecaa8b78818404ed2fb.tar.gz qemu-8a7d552cb3684570491a5ecaa8b78818404ed2fb.tar.bz2 qemu-8a7d552cb3684570491a5ecaa8b78818404ed2fb.zip |
balloon: Disassociate handlers from balloon device on unplug
When a balloon device gets unplugged, allow the balloon handlers to be
freed.
Reported-by: Shaolong Hu <shu@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'balloon.c')
-rw-r--r-- | balloon.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -52,6 +52,16 @@ int qemu_add_balloon_handler(QEMUBalloonEvent *event_func, return 0; } +void qemu_remove_balloon_handler(void *opaque) +{ + if (balloon_opaque != opaque) { + return; + } + balloon_event_fn = NULL; + balloon_stat_fn = NULL; + balloon_opaque = NULL; +} + static int qemu_balloon(ram_addr_t target) { if (!balloon_event_fn) { |