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_dev_mgr.c
index 8652209..bce853b 100644 (file)
@@ -162,7 +162,7 @@ int dev_unhook_io(struct vm_device   *dev,
 
 
 /* IRQ HOOKS */
-
+/*
 int dev_mgr_add_irq_hook(struct vmm_dev_mgr * mgr, struct dev_irq_hook * hook) {
   list_add(&(hook->mgr_list), &(mgr->irq_hooks));
   mgr->num_irq_hooks++;
@@ -267,7 +267,7 @@ int dev_unhook_irq(struct vm_device * dev,
 }
 
 
-
+*/
 
 
 
@@ -304,7 +304,7 @@ int dev_mgr_hook_mem(struct guest_info    *vm,
 {
 
   struct dev_mem_hook *hook;
-  VMMMalloc(struct dev_mem_hook *, hook,sizeof(struct dev_mem_hook));
+  V3_Malloc(struct dev_mem_hook *, hook,sizeof(struct dev_mem_hook));
   
   if (!hook) { 
     return -1;