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.


reformatting of the source files
[palacios.git] / palacios / src / palacios / vmm_msr.c
index 434fc9d..105bfe6 100644 (file)
 
 
 void v3_init_msr_map(struct guest_info * info) {
-  struct v3_msr_map * msr_map  = &(info->msr_map);
+    struct v3_msr_map * msr_map  = &(info->msr_map);
 
-  INIT_LIST_HEAD(&(msr_map->hook_list));
-  msr_map->num_hooks = 0;
+    INIT_LIST_HEAD(&(msr_map->hook_list));
+    msr_map->num_hooks = 0;
 }
 
 
@@ -36,54 +36,54 @@ int v3_hook_msr(struct guest_info * info, uint_t msr,
                int (*write)(uint_t msr, struct v3_msr src, void * priv_data),
                void * priv_data) {
 
-  struct v3_msr_map * msr_map = &(info->msr_map);
-  struct v3_msr_hook * hook = NULL;
+    struct v3_msr_map * msr_map = &(info->msr_map);
+    struct v3_msr_hook * hook = NULL;
 
-  hook = (struct v3_msr_hook *)V3_Malloc(sizeof(struct v3_msr_hook));
-  if (hook == NULL) {
-    PrintError("Could not allocate msr hook for MSR %d\n", msr);
-    return -1;
-  }
+    hook = (struct v3_msr_hook *)V3_Malloc(sizeof(struct v3_msr_hook));
+    if (hook == NULL) {
+       PrintError("Could not allocate msr hook for MSR %d\n", msr);
+       return -1;
+    }
 
-  hook->read = read;
-  hook->write = write;
-  hook->msr = msr;
-  hook->priv_data = priv_data;
+    hook->read = read;
+    hook->write = write;
+    hook->msr = msr;
+    hook->priv_data = priv_data;
 
-  msr_map->num_hooks++;
+    msr_map->num_hooks++;
 
-  list_add(&(hook->link), &(msr_map->hook_list));
+    list_add(&(hook->link), &(msr_map->hook_list));
 
-  return 0;
+    return 0;
 }
 
 
 int v3_unhook_msr(struct guest_info * info, uint_t msr) {
-  return -1;
+    return -1;
 }
 
 
 
 struct v3_msr_hook * v3_get_msr_hook(struct guest_info * info, uint_t msr) {
-  struct v3_msr_map * msr_map = &(info->msr_map);
-  struct v3_msr_hook * hook = NULL;
+    struct v3_msr_map * msr_map = &(info->msr_map);
+    struct v3_msr_hook * hook = NULL;
 
-  list_for_each_entry(hook, &(msr_map->hook_list), link) {
-    if (hook->msr == msr) {
-      return hook;
+    list_for_each_entry(hook, &(msr_map->hook_list), link) {
+       if (hook->msr == msr) {
+           return hook;
+       }
     }
-  }
 
-  return NULL;
+    return NULL;
 }
 
 
 void v3_print_msr_map(struct guest_info * info) {
-  struct v3_msr_map * msr_map = &(info->msr_map);
-  struct v3_msr_hook * hook = NULL;
+    struct v3_msr_map * msr_map = &(info->msr_map);
+    struct v3_msr_hook * hook = NULL;
 
-  list_for_each_entry(hook, &(msr_map->hook_list), link) {
-    PrintDebug("MSR HOOK (MSR=%d) (read=0x%p) (write=0x%p)\n",
-              hook->msr, hook->read, hook->write);
-  }
+    list_for_each_entry(hook, &(msr_map->hook_list), link) {
+       PrintDebug("MSR HOOK (MSR=%d) (read=0x%p) (write=0x%p)\n",
+                  hook->msr, hook->read, hook->write);
+    }
 }