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.


compilation fixes
Jack Lange [Fri, 29 Oct 2010 21:42:49 +0000 (16:42 -0500)]
palacios/src/devices/apic.c
palacios/src/devices/io_apic.c

index 348fff7..ee42756 100644 (file)
@@ -596,7 +596,7 @@ static int deliver_ipi(struct apic_state * src_apic,
                //     host maitains logical proc->phsysical proc
                PrintDebug(" non-local core, forcing it to exit\n"); 
 
-               v3_interrupt_cpu(core->vm_info, dst_core->cpu_id, 0);
+               v3_interrupt_cpu(dst_core->vm_info, dst_core->cpu_id, 0);
            }
 
            break;
index c725e86..8888530 100644 (file)
@@ -284,8 +284,8 @@ static int ioapic_raise_irq(struct v3_vm_info * vm, void * private_data, int irq
        ipi.mode = irq_entry->del_mode;
        ipi.logical = irq_entry->dst_mode;
        ipi.trigger_mode = irq_entry->trig_mode;
-       ipi->dst = irq_entry->dst_field;
-       ipi->dst_shorthand = 0;
+       ipi.dst = irq_entry->dst_field;
+       ipi.dst_shorthand = 0;
 
        // Need to add destination argument here...
        v3_apic_send_ipi(vm, ioapic->apic_dev, &ipi);