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.


more updates of devices to new device framework
[palacios.git] / palacios / src / devices / apic.c
index 13fd991..d4343d2 100644 (file)
@@ -1045,10 +1045,10 @@ static int apic_init(struct guest_info * vm, void * cfg_data) {
 
     struct apic_state * apic = (struct apic_state *)V3_Malloc(sizeof(struct apic_state));
 
-    struct vm_device * dev = v3_allocate_device("APIC", &dev_ops, apic);
+    struct vm_device * dev = v3_allocate_device("LAPIC", &dev_ops, apic);
 
     if (v3_attach_device(vm, dev) == -1) {
-       PrintError("Could not attach device %s\n", "APIC");
+       PrintError("Could not attach device %s\n", "LAPIC");
        return -1;
     }