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 floating point operations from profiler
Jack Lange [Wed, 25 Mar 2009 17:42:46 +0000 (12:42 -0500)]
palacios/src/palacios/vmm_profiler.c

index f7bc878..567f652 100644 (file)
@@ -120,9 +120,10 @@ void v3_profile_exit(struct guest_info * info, uint_t exit_code) {
        insert_event(info, evt);
     }
 
+    
   
 
-    evt->handler_time = (evt->handler_time * .99) + (time * .01);
+    evt->handler_time = (evt->handler_time * 127ull + time) / 128;
 
 
     evt->exit_count++;