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.


Assorted cleanup
Peter Dinda [Fri, 20 Sep 2013 21:02:16 +0000 (16:02 -0500)]
linux_module/vm.c
linux_usr/v3_continue.c
linux_usr/v3_core_move.c
linux_usr/v3_pause.c
palacios/src/palacios/vm_guest.c

index ac1b363..dd4aeda 100644 (file)
@@ -442,6 +442,7 @@ int free_palacios_vm(struct v3_guest * guest) {
 
     free_guest_ctrls(guest);
 
+    deinit_vm_extensions(guest);
 
     palacios_vfree(guest->img);
     palacios_free(guest);
index 0b2c411..30ce201 100644 (file)
@@ -27,7 +27,7 @@ int main(int argc, char* argv[]) {
        return -1;
     }
 
-    printf("Stopping VM\n");
+    printf("Continuing VM\n");
     
     vm_fd = open(filename, O_RDONLY);
 
index 80e8847..eb35896 100644 (file)
@@ -30,7 +30,7 @@ int main(int argc, char* argv[]) {
     cmd.vcore_id = atoi(argv[2]);
     cmd.pcore_id = atoi(argv[3]);
 
-    printf("Migrate vcore %d to physical CPU %d\n", cmd.vcore_id, cmd.pcore_id);
+    printf("Migrateing vcore %d to physical CPU %d\n", cmd.vcore_id, cmd.pcore_id);
 
     vm_fd = open(vm_dev, O_RDONLY);
 
index 193ba57..be445db 100644 (file)
@@ -27,7 +27,7 @@ int main(int argc, char* argv[]) {
        return -1;
     }
 
-    printf("Stopping VM\n");
+    printf("Pausing VM\n");
     
     vm_fd = open(filename, O_RDONLY);
 
index 48f0d8a..e49e4d4 100644 (file)
@@ -354,6 +354,8 @@ int v3_free_vm_internal(struct v3_vm_info * vm) {
 
     v3_deinit_events(vm);
 
+    v3_fw_cfg_deinit(vm);
+
 
     return 0;
 }