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.


Minor PMU bugfix
Peter Dinda [Thu, 21 Feb 2013 22:36:15 +0000 (16:36 -0600)]
linux_module/iface-pmu.c

index b85ed3f..1f0f459 100644 (file)
@@ -377,6 +377,7 @@ static void intel_pmu_deinit(void) {
   if ((get_cpu_var(pmu_refcount)--)==0) {
     put_cpu_var(pmu_refcount);
     // actually deinit
+    return;
   }
   put_cpu_var(pmu_refcount);
 }
@@ -606,6 +607,7 @@ static void amd_pmu_deinit(void) {
   if ((get_cpu_var(pmu_refcount)--)==0) {
     put_cpu_var(pmu_refcount);
     // actually deinit
+    return;
   }
   put_cpu_var(pmu_refcount);
 }