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.


removed unused msrs
Jack Lange [Sun, 26 Apr 2009 23:00:27 +0000 (18:00 -0500)]
palacios/include/palacios/vm_guest.h
palacios/include/palacios/vmm_shadow_paging.h
palacios/src/palacios/svm.c

index 1f0293f..c17fba6 100644 (file)
@@ -168,21 +168,6 @@ struct guest_info {
     struct v3_profiler profiler;
 
     void * decoder_state;
-
-    v3_msr_t guest_efer;
-
-    /* Do we need these ? */
-    v3_msr_t guest_star;
-    v3_msr_t guest_lstar;
-    v3_msr_t guest_cstar;
-    v3_msr_t guest_syscall_mask;
-    v3_msr_t guest_gs_base;
-
-
-    //uint64_t fs;
-    //uint64_t gs;
-
-
 };
 
 
index 247c471..0078e0b 100644 (file)
@@ -47,9 +47,6 @@ struct shadow_page_state {
 struct guest_info;
 
 
-
-
-
 int v3_init_shadow_page_state(struct guest_info * info);
 
 
index 36d58dd..2e5855f 100644 (file)
@@ -209,8 +209,6 @@ static void Init_VMCB_BIOS(vmcb_t * vmcb, struct guest_info *vm_info) {
        ctrl_area->cr_reads.cr3 = 1;
        ctrl_area->cr_writes.cr3 = 1;
 
-       vm_info->guest_efer.value = 0x0LL;
-
        v3_hook_msr(vm_info, EFER_MSR, 
                    &v3_handle_efer_read,
                    &v3_handle_efer_write,