summaryrefslogtreecommitdiff
path: root/savevm.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-08-20 19:42:40 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-08-27 20:30:22 -0500
commitcff09e923999e3848cdf3b2dc4e6c595523cddc6 (patch)
tree3e39e77a6e792dcb04730673562ac7932cf5e788 /savevm.c
parent73534f2f682f2957fabb25e3890481098cc5dcee (diff)
downloadqemu-cff09e923999e3848cdf3b2dc4e6c595523cddc6.tar.gz
Add VMState support to run a function after load
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'savevm.c')
-rw-r--r--savevm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/savevm.c b/savevm.c
index d953c4af79..2b4054a123 100644
--- a/savevm.c
+++ b/savevm.c
@@ -1060,6 +1060,8 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd,
}
field++;
}
+ if (vmsd->run_after_load)
+ return vmsd->run_after_load(opaque);
return 0;
}