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.


HPET does not abort load/save
Peter Dinda [Tue, 11 Mar 2014 16:09:42 +0000 (11:09 -0500)]
palacios/src/devices/hpet.c

index a9b5d1a..c0a8389 100644 (file)
@@ -789,7 +789,7 @@ static int
 hpet_save (struct v3_chkpt_ctx * ctx, void * private_data) 
 {
     PrintError(VM_NONE, VCORE_NONE, "Unimplemented\n");
-    return -1;
+    return 0;
 }
 
 
@@ -797,7 +797,7 @@ static int
 hpet_load (struct v3_chkpt_ctx * ctx, void * private_data) 
 {
     PrintError(VM_NONE, VCORE_NONE, "Unimplemented\n");
-    return -1;
+    return 0;
 }
 
 #endif