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 missed extension include update
Patrick G. Bridges [Tue, 5 Feb 2013 20:29:20 +0000 (13:29 -0700)]
palacios/include/palacios/vmm_extensions.h

index a7c1718..67d6f86 100644 (file)
@@ -39,8 +39,9 @@ struct v3_extensions {
 
 struct v3_extension_impl {
     char * name;
-    int (*init)(struct v3_vm_info * vm, v3_cfg_tree_t * cfg, void ** priv_data);
-    int (*deinit)(struct v3_vm_info * vm, void * priv_data);
+    int (*init)();
+    int (*vm_init)(struct v3_vm_info * vm, v3_cfg_tree_t * cfg, void ** priv_data);
+    int (*vm_deinit)(struct v3_vm_info * vm, void * priv_data);
     int (*core_init)(struct guest_info * core, void * priv_data, void ** core_data);
     int (*core_deinit)(struct guest_info * core, void * priv_data, void * core_data);
     int (*on_entry)(struct guest_info * core, void * priv_data);