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.


don't let PCI BAR updates go through when device IO-space disabled
Kyle Hale [Mon, 24 Mar 2014 17:43:16 +0000 (12:43 -0500)]
palacios/src/devices/pci.c

index c911639..f9c7d1a 100644 (file)
@@ -856,6 +856,7 @@ static int bar_update(struct pci_device * pci_dev, uint32_t offset,
            // only do this if pci device is enabled....
            if (!(pci_dev->config_header.status & 0x1)) {
                PrintError(VM_NONE, VCORE_NONE, "PCI Device IO space not enabled\n");
+        break;
            }
 
            for (i = 0; i < bar->num_ports; i++) {