From 752ff2fa3188f8bd9a105024ab65f6fe53736126 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Thu, 10 Sep 2009 03:04:30 +0200 Subject: vmstate: rename run_after_load() -> post_load() This naming was used in kvm tree, and is easier to remember Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- savevm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'savevm.c') diff --git a/savevm.c b/savevm.c index 7b0989f..38f9946 100644 --- a/savevm.c +++ b/savevm.c @@ -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; } -- cgit v1.1