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.


Merge branch 'devel' into timer_control
Patrick G. Bridges [Mon, 25 Oct 2010 19:28:47 +0000 (13:28 -0600)]
1  2 
Kconfig
palacios/src/palacios/vmm_config.c

diff --combined Kconfig
+++ b/Kconfig
@@@ -188,6 -188,7 +188,6 @@@ endmen
  source "Kconfig.stdlibs"
  
  
 -
  menu "Virtual Paging"
  
  config SHADOW_PAGING
@@@ -212,21 -213,17 +212,29 @@@ config DEBUG_SHDW_PG_VTL
        help
          Enables debugging messages for VTLB implementation
  
+ config SHADOW_PAGING_CACHE1
+       bool "Shadow Page Cache (1)"
+       default y
+       depends on SHADOW_PAGING
+       help 
+          Enables caching implemenation for shadow paging
  endmenu
  
  
 +menu "Time Management"
 +
 +config TIME_VIRTUALIZE_TSC
 +      bool "Virtualize guest TSC"
 +      default n
 +      help
 +          Virtualize the processor time stamp counter in the guest, 
 +          generally increasing consistency between various time sources 
 +          but also potentially making guest time run slower than real time.
 +
 +endmenu
 +
  menu "Symbiotic Functions"
  
  config SYMBIOTIC
@@@ -334,12 -331,7 +342,12 @@@ config DEBUG_INTERRUPT
        help 
          This turns on debugging for the interrupt system
  
 -
 +config DEBUG_TIME
 +      bool "Timing"
 +      default n
 +      depends on DEBUG_ON
 +      help
 +        This turns on debugging of system time virtualization
  
  config DEBUG_IO
        bool "IO"
@@@ -327,11 -327,12 +327,12 @@@ static int determine_paging_mode(struc
        return -1;
      }
  
-     if (strcasecmp(v3_cfg_val(pg_tree, "large_pages"), "true") == 0) {
-       info->use_large_pages = 1;
-       PrintDebug("Use of large pages in memory virtualization enabled.\n");
+     if (v3_cfg_val(pg_tree, "large_pages") != NULL) {
+       if (strcasecmp(v3_cfg_val(pg_tree, "large_pages"), "true") == 0) {
+           info->use_large_pages = 1;
+           PrintDebug("Use of large pages in memory virtualization enabled.\n");
+       }
      }
      return 0;
  }
  
@@@ -496,7 -497,6 +497,7 @@@ struct v3_vm_info * v3_config_guest(voi
  
        info->cpu_id = i;
        info->vm_info = vm;
 +      info->core_cfg_data = per_core_cfg;
  
        if (pre_config_core(info, per_core_cfg) == -1) {
            PrintError("Error in core %d preconfiguration\n", i);