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.


Fixed bug in v3_advance_time() found by Oscar (omondrag@cs.unm.edu) preventing slavin...
Patrick G. Bridges [Wed, 25 Apr 2012 14:59:21 +0000 (08:59 -0600)]
palacios/src/palacios/vmm_time.c

index 491ceab..24790cf 100644 (file)
@@ -129,7 +129,7 @@ int v3_advance_time(struct guest_info * info, uint64_t *host_cycles)
 {
     uint64_t guest_cycles;
 
-    if (info->flags & VM_TIME_SLAVE_HOST) {
+    if (info->time_state.flags & VM_TIME_SLAVE_HOST) {
        struct v3_time *vm_ts = &(info->vm_info->time_state);
         uint64_t ht = v3_get_host_time(&info->time_state);
         uint64_t host_elapsed = ht - info->time_state.initial_host_time;