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.


this will probably be a disaster...
Jack Lange [Tue, 5 Oct 2010 22:36:12 +0000 (17:36 -0500)]
palacios/src/devices/icc_bus.c

index 9b42e81..cfe3c05 100644 (file)
@@ -351,7 +351,7 @@ int v3_icc_send_ipi(struct vm_device * icc_bus, uint32_t src_apic, uint64_t icr_
            
        case 2: 
 
-       case 3:  // all and all-but-me
+       case 3: { // all and all-but-me
            if (icr->dst_mode==0) { 
                // physical
                int i;
@@ -372,10 +372,10 @@ int v3_icc_send_ipi(struct vm_device * icc_bus, uint32_t src_apic, uint64_t icr_
            }
            break;
        }
-
        default:
            return -1;
     }
+    
 
     return 0;
 }