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.


fixed long mode bug
Jack Lange [Wed, 4 Mar 2009 04:23:45 +0000 (22:23 -0600)]
palacios/src/palacios/vmm_direct_paging.c

index 3bbbbf9..d244aac 100644 (file)
@@ -48,12 +48,13 @@ int v3_handle_passthrough_pagefault(struct guest_info * info, addr_t fault_addr,
        case REAL:
        case PROTECTED:
            return handle_passthrough_pagefault_32(info, fault_addr, error_code);
+
        case PROTECTED_PAE:
-           return handle_passthrough_pagefault_32pae(info, fault_addr, error_code);
        case LONG:
-           break;
        case LONG_32_COMPAT:
-           break;
+           // Long mode will only use 32PAE page tables...
+           return handle_passthrough_pagefault_32pae(info, fault_addr, error_code);
+
        default:
            PrintError("Unknown CPU Mode\n");
            break;