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.


build fix
[palacios.git] / palacios / src / palacios / vm_guest.c
index e62835c..87f4f31 100644 (file)
@@ -421,6 +421,14 @@ int v3_init_vm(struct v3_vm_info * vm) {
        return -1;
     }
 
+
+    if (v3_init_shdw_impl(vm) == -1) {
+       PrintError("VM initialization error in shadow implementaion\n");
+       return -1;
+    }
+
+
+
 #ifdef CONFIG_SYMBIOTIC
     v3_init_sym_iface(vm);
 #endif
@@ -475,7 +483,7 @@ int v3_init_core(struct guest_info * core) {
 #endif
 
     if (core->shdw_pg_mode == SHADOW_PAGING) {
-       v3_init_shadow_page_state(core);
+       v3_init_shdw_pg_state(core);
     }
 
     v3_init_time(core);
@@ -485,6 +493,9 @@ int v3_init_core(struct guest_info * core) {
     v3_init_decoder(core);
 
 
+#ifdef CONFIG_SYMBIOTIC
+    v3_init_sym_core(core);
+#endif
 
     // init SVM/VMX
 #ifdef CONFIG_SVM