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.


free configuration data during deinitialization
[palacios.git] / palacios / src / palacios / vmm.c
index d67509c..a82fb42 100644 (file)
@@ -82,7 +82,7 @@ void Init_V3(struct v3_os_hooks * hooks, int num_cpus) {
     }
 
     // Register all the possible device types
-    v3_init_devices();
+    V3_init_devices();
 
     // Register all shadow paging handlers
     V3_init_shdw_paging();
@@ -300,18 +300,19 @@ int v3_free_vm(struct v3_vm_info * vm) {
     int i = 0;
     // deinitialize guest (free memory, etc...)
 
-    v3_dev_mgr_deinit(vm);
+    v3_free_vm_devices(vm);
 
+    // free cores
     for (i = 0; i < vm->num_cores; i++) {
-       // free cores
-
        v3_free_core(&(vm->cores[i]));
-
     }
 
+    // free vm
     v3_free_vm_internal(vm);
 
-    // free vm
+    v3_free_config(vm);
+
+    V3_Free(vm);
 
     return 0;
 }