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.


replace errant printks in linux module with macro calls
Peter Dinda [Wed, 20 Jun 2012 23:01:04 +0000 (18:01 -0500)]
linux_module/vm.c

index 40cfa06..06a016a 100644 (file)
@@ -217,17 +217,17 @@ static long v3_vm_ioctl(struct file * filp,
            memset(&cmd, 0, sizeof(struct v3_debug_cmd));
            
            if (copy_from_user(&cmd, argp, sizeof(struct v3_debug_cmd))) {
-               printk("Error: Could not copy debug command from user space\n");
+               ERROR("Error: Could not copy debug command from user space\n");
                return -EFAULT;
            }
 
            evt.core_id = cmd.core;
            evt.cmd = cmd.cmd;
 
-           printk("Debugging VM\n");
+           INFO("Debugging VM\n");
 
            if (v3_deliver_debug_event(guest->v3_ctx, &evt) == -1) {
-               printk("Error could not deliver debug cmd\n");
+               ERROR("Error could not deliver debug cmd\n");
                return -EFAULT;
            }