Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Added interface for device checkpoint and restore
Peter Dinda [Thu, 7 Apr 2011 21:13:15 +0000 (16:13 -0500)]
palacios/include/palacios/vmm_dev_mgr.h

index 1e3f68b..383aebd 100644 (file)
@@ -29,7 +29,7 @@
 #include <palacios/vmm_msr.h>
 #include <palacios/vmm_config.h>
 #include <palacios/vmm_ethernet.h>
-
+#include <palacios/vmm_keyed_stream.h>
 
 struct v3_vm_info;
 
@@ -106,8 +106,8 @@ int V3_deinit_devices();
 struct v3_device_ops {
     int (*free)(void * private_data);
 
-    //int (*save)(struct vm_device *dev, struct *iostream);
-    //int (*restore)(struct vm_device *dev, struct *iostream);
+    int (*checkpoint)(struct vm_device *dev, v3_keyed_stream_t stream);
+    int (*restore)(struct vm_device *dev, v3_keyed_stream_t stream);
 };