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.


lots of changes...
[palacios.git] / palacios / src / palacios / vmm_io.c
index f57bf39..9a9629f 100644 (file)
@@ -41,7 +41,7 @@ int add_io_hook(vmm_io_map_t * io_map, vmm_io_hook_t * io_hook) {
       //tmp_hook->read = io_hook->read;
       //tmp_hook->write = io_hook->write;
       
-      //VMMFree(io_hook);
+      //V3_Free(io_hook);
       return -1;
     } else {
       io_hook->prev = tmp_hook;
@@ -152,7 +152,7 @@ int hook_io_port(vmm_io_map_t * io_map, uint_t port,
   io_hook->priv_data = priv_data;
 
   if (add_io_hook(io_map, io_hook) != 0) {
-    VMMFree(io_hook);
+    V3_Free(io_hook);
     return -1;
   }