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.


Small fixes in v3_free.c
Kyle Hale [Thu, 5 Jul 2012 19:38:51 +0000 (14:38 -0500)]
Use strtol instead of atoi for more flexible index numbers. Also, fail
on error returned from ioctl.

linux_usr/v3_free.c

index c9c7276..1aa4d7a 100644 (file)
@@ -18,6 +18,7 @@
 int main(int argc, char* argv[]) {
     int vm_fd = 0;
     unsigned long vm_idx = 0;
+    int ret;
 
 
     if (argc <= 1) {
@@ -26,7 +27,7 @@ int main(int argc, char* argv[]) {
     }
 
 
-    vm_idx = atoi(argv[1]);
+    vm_idx = strtol(argv[1], NULL, 0);
 
     printf("Freeing VM %d\n", vm_idx);
     
@@ -37,14 +38,14 @@ int main(int argc, char* argv[]) {
        return -1;
     }
 
-    ioctl(vm_fd, V3_FREE_GUEST, vm_idx); 
-
-
+    ret = ioctl(vm_fd, V3_FREE_GUEST, vm_idx); 
+    if (ret < 0) {
+        printf("Error freeing VM %d\n", vm_idx);
+        return -1;
+    }
 
     /* Close the file descriptor.  */ 
     close(vm_fd); 
-
 
     return 0; 
 }