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.


*** empty log message ***
[palacios.git] / palacios / src / geekos / vm.c
index b1149fb..abce2ac 100644 (file)
@@ -83,7 +83,7 @@ int IO_BOCHS_debug(ushort_t port, void * src, uint_t length) {
 
   bochs_debug_buf[bochs_debug_offset++] = *(char*)src;
 
-  if ((*(char*)src == '\n') ||  (bochs_debug_offset == 1023)) {
+  if ((*(char*)src == 0xa) ||  (bochs_debug_offset == 1023)) {
     SerialPrint("BOCHS>%s", bochs_debug_buf);
     memset(bochs_debug_buf, 0, 1024);
     bochs_debug_offset = 0;
@@ -261,9 +261,10 @@ int RunVMM(struct Boot_Info * bootInfo) {
        region_start += reg->length;
       }
       
+      add_shadow_region_passthrough(&vm_info, 0xc0000, 0xc8000, 0xc0000);
       add_shadow_region_passthrough(&vm_info, 0x0, 0xa0000, (addr_t)Allocate_VMM_Pages(160));
       add_shadow_region_passthrough(&vm_info, 0xa0000, 0xc0000, 0xa0000); 
-      if (add_shadow_region_passthrough(&vm_info, 0xc7000, 0xf0000, (addr_t)Allocate_VMM_Pages(41)) == -1) {
+      if (add_shadow_region_passthrough(&vm_info, 0xc8000, 0xf0000, (addr_t)Allocate_VMM_Pages(40)) == -1) {
        PrintDebug("Error adding shadow region\n");
       }
 
@@ -289,7 +290,7 @@ int RunVMM(struct Boot_Info * bootInfo) {
     PrintBoth("Initializing Guest (eip=0x%.8x) (esp=0x%.8x)\n", (uint_t)vm_info.rip,(uint_t)vm_info.vm_regs.rsp);
     (vmm_ops).init_guest(&vm_info);
     PrintBoth("Starting Guest\n");
-    Clear_Screen();
+    //Clear_Screen();
     (vmm_ops).start_guest(&vm_info);
 
     return 0;