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.


Configuration of global performance parameters
[palacios.git] / palacios / src / palacios / vmm_config.c
index f02ab25..75d9ea7 100644 (file)
@@ -37,6 +37,7 @@
 
 
 #include <palacios/vmm_host_events.h>
+#include <palacios/vmm_perftune.h>
 
 #include "vmm_config_class.h"
 
@@ -474,6 +475,11 @@ static int post_config_vm(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) {
        return -1;
     }
 
+    if (v3_setup_performance_tuning(vm, cfg) == -1) { 
+       PrintError("Failed to configure performance tuning parameters\n");
+       return -1;
+    }
+
 
     vm->run_state = VM_STOPPED;