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 | 752ff2fa3188f8bd9a105024ab65f6fe53736126 (patch) | |
tree | 8fde5516a8108e32ea28ea7516f317529222744d /hw/piix_pci.c | |
parent | 1eb7538b7753535f9502c8c5779fd9f4e80d1559 (diff) |
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 'hw/piix_pci.c')
-rw-r--r-- | hw/piix_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/piix_pci.c b/hw/piix_pci.c index ef3463b789..edd6df07e3 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -172,7 +172,7 @@ static int i440fx_load_old(QEMUFile* f, void *opaque, int version_id) return 0; } -static int i440fx_after_load(void *opaque) +static int i440fx_post_load(void *opaque) { PCII440FXState *d = opaque; @@ -186,7 +186,7 @@ static const VMStateDescription vmstate_i440fx = { .minimum_version_id = 3, .minimum_version_id_old = 1, .load_state_old = i440fx_load_old, - .run_after_load = i440fx_after_load, + .post_load = i440fx_post_load, .fields = (VMStateField []) { VMSTATE_PCI_DEVICE(dev, PCII440FXState), VMSTATE_UINT8(smm_enabled, PCII440FXState), |