Skip to content

Commit

Permalink
balloon: Disassociate handlers from balloon device on unplug
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
amit3s authored and Anthony Liguori committed Sep 9, 2011
1 parent e89720b commit 8a7d552
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions balloon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
1 change: 1 addition & 0 deletions balloon.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ typedef void (QEMUBalloonStatus)(void *opaque, MonitorCompletion cb,

int qemu_add_balloon_handler(QEMUBalloonEvent *event_func,
QEMUBalloonStatus *stat_func, void *opaque);
void qemu_remove_balloon_handler(void *opaque);

void monitor_print_balloon(Monitor *mon, const QObject *data);
int do_info_balloon(Monitor *mon, MonitorCompletion cb, void *opaque);
Expand Down

0 comments on commit 8a7d552

Please sign in to comment.