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.


Updates to some debugging of time virtualization. Adding infrasructer to support...
[palacios.git] / linux_module / vm.c
index 9869334..da9b460 100644 (file)
@@ -130,7 +130,7 @@ static long v3_vm_ioctl(struct file * filp,
        case V3_VM_LAUNCH: {
            printk("palacios: launching vm\n");
 
-           if (v3_start_vm(guest->v3_ctx, 0xfffffffe) < 0) { 
+           if (v3_start_vm(guest->v3_ctx, (0x1 << num_online_cpus()) - 1) < 0) { 
                printk("palacios: launch of vm failed\n");
                return -1;
            }
@@ -158,6 +158,13 @@ static long v3_vm_ioctl(struct file * filp,
            v3_continue_vm(guest->v3_ctx);
            break;
        }
+       case V3_VM_SIMULATE: {
+           printk("Simulating VM (%s) for %lu msecs\n", guest->name, arg);
+           v3_simulate_vm(guest->v3_ctx, arg);
+           break;
+       }
+
+
 #ifdef V3_CONFIG_CHECKPOINT
        case V3_VM_SAVE: {
            struct v3_chkpt_info chkpt;