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.


code clean up
[palacios.git] / palacios / src / palacios / vmm.c
index 036d8ae..9ac1597 100644 (file)
@@ -2,28 +2,32 @@
 #include <palacios/svm.h>
 #include <palacios/vmx.h>
 #include <palacios/vmm_intr.h>
+#include <palacios/vmm_config.h>
+#include <palacios/vm_guest.h>
 
-uint_t vmm_cpu_type;
-
-
-
-
+v3_cpu_arch_t v3_cpu_type;
 struct vmm_os_hooks * os_hooks = NULL;
 
 
 
+void * allocate_guest() {
+  void * info = V3_Malloc(sizeof(struct guest_info));
+  memset(info, 0, sizeof(struct guest_info));
+  return info;
+}
 
 
-void Init_V3(struct vmm_os_hooks * hooks, struct vmm_ctrl_ops * vmm_ops) {
-  vmm_cpu_type = VMM_INVALID_CPU;
 
+void Init_V3(struct vmm_os_hooks * hooks, struct vmm_ctrl_ops * vmm_ops) {
   os_hooks = hooks;
 
+  v3_cpu_type = V3_INVALID_CPU;
 
   if (is_svm_capable()) {
-    vmm_cpu_type = VMM_SVM_CPU;
-    PrintDebug("Machine is SVM Capable\n");
 
+    PrintDebug("Machine is SVM Capable\n");
+    vmm_ops->allocate_guest = &allocate_guest;
+    vmm_ops->config_guest = &config_guest;
     Init_SVM(vmm_ops);
 
     /*
@@ -35,3 +39,7 @@ void Init_V3(struct vmm_os_hooks * hooks, struct vmm_ctrl_ops * vmm_ops) {
     PrintDebug("CPU has no virtualization Extensions\n");
   }
 }
+
+
+// Get CPU Type..
+