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.


correct XTEST behavior in RTM code
[palacios.git] / palacios / src / extensions / ext_vmware.c
index 552ce28..e9db64c 100644 (file)
@@ -121,8 +121,9 @@ static int vmware_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg, void ** priv
 
 static struct v3_extension_impl vmware_impl = {
     .name = "VMWARE_IFACE",
-    .init = vmware_init,
-    .deinit = NULL,
+    .init = NULL,
+    .vm_init = vmware_init,
+    .vm_deinit = NULL,
     .core_init = NULL,
     .core_deinit = NULL,
     .on_entry = NULL,