diff options
author | Juan Quintela <quintela@redhat.com> | 2009-09-10 03:04:30 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-11 11:10:05 -0500 |
commit | acb4d5ec1f0fdcf2632fa1fecdc341de479e30b0 (patch) | |
tree | 8fde5516a8108e32ea28ea7516f317529222744d /savevm.c | |
parent | 0f06c91c4656d3de1f6da99bab1eaca69dfffa79 (diff) | |
download | qemu-acb4d5ec1f0fdcf2632fa1fecdc341de479e30b0.tar.gz qemu-acb4d5ec1f0fdcf2632fa1fecdc341de479e30b0.tar.bz2 qemu-acb4d5ec1f0fdcf2632fa1fecdc341de479e30b0.zip |
vmstate: rename run_after_load() -> post_load()
This naming was used in kvm tree, and is easier to remember
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.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1057,8 +1057,9 @@ int vmstate_load_state(QEMUFile *f, const VMStateDescription *vmsd, } field++; } - if (vmsd->run_after_load) - return vmsd->run_after_load(opaque); + if (vmsd->post_load) { + return vmsd->post_load(opaque); + } return 0; } |