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.


stupid typo fix
Jack Lange [Wed, 12 Jan 2011 05:26:41 +0000 (23:26 -0600)]
palacios/src/palacios/vm_guest.c

index 03de4f0..3fbc69d 100644 (file)
@@ -507,15 +507,15 @@ int v3_init_vm(struct v3_vm_info * vm) {
 #ifdef CONFIG_SVM
        case V3_SVM_CPU:
        case V3_SVM_REV3_CPU:
-           v3_deinit_svm_io_map(vm);
-           v3_deinit_svm_msr_map(vm);
+           v3_init_svm_io_map(vm);
+           v3_init_svm_msr_map(vm);
            break;
 #endif
 #ifdef CONFIG_VMX
        case V3_VMX_CPU:
        case V3_VMX_EPT_CPU:
-           v3_deinit_vmx_io_map(vm);
-           v3_deinit_vmx_msr_map(vm);
+           v3_init_vmx_io_map(vm);
+           v3_init_vmx_msr_map(vm);
            break;
 #endif
        default: