diff options
| author | Juan Quintela <quintela@redhat.com> | 2009-08-20 19:42:40 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 20:30:22 -0500 |
| commit | cff09e923999e3848cdf3b2dc4e6c595523cddc6 (patch) | |
| tree | 3e39e77a6e792dcb04730673562ac7932cf5e788 | |
| parent | 73534f2f682f2957fabb25e3890481098cc5dcee (diff) | |
| download | focaccia-qemu-cff09e923999e3848cdf3b2dc4e6c595523cddc6.tar.gz focaccia-qemu-cff09e923999e3848cdf3b2dc4e6c595523cddc6.zip | |
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>
| -rw-r--r-- | hw/hw.h | 1 | ||||
| -rw-r--r-- | savevm.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/hw/hw.h b/hw/hw.h index 73f2f43281..f3cc98171a 100644 --- a/hw/hw.h +++ b/hw/hw.h @@ -306,6 +306,7 @@ struct VMStateDescription { int minimum_version_id; int minimum_version_id_old; LoadStateHandler *load_state_old; + int (*run_after_load)(void *opaque); VMStateField *fields; }; 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; } |