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>
This commit is contained in:
Juan Quintela 2009-09-10 03:04:30 +02:00 committed by Anthony Liguori
parent 1eb7538b77
commit 752ff2fa31
6 changed files with 12 additions and 11 deletions

View file

@ -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;
}