qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT cff09e9] Add VMState support to run a function af


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT cff09e9] Add VMState support to run a function after load
Date: Fri, 28 Aug 2009 02:19:59 -0000

From: Juan Quintela <address@hidden>

Signed-off-by: Juan Quintela <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>

diff --git a/hw/hw.h b/hw/hw.h
index 73f2f43..f3cc981 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 d953c4a..2b4054a 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;
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]