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.


cpuid bugfix for iface-pmu code
[palacios.git] / linux_module / iface-host-pci.c
index 13897ab..d9622c9 100644 (file)
@@ -232,11 +232,15 @@ static int host_pci_init( void ) {
     return 0;
 }
 
-
+static int host_pci_deinit(void) {
+  palacios_spinlock_deinit(&lock);
+  return 0;
+}
 
 static struct linux_ext host_pci_ext = {
     .name = "HOST_PCI",
     .init = host_pci_init,
+    .deinit = host_pci_deinit,
 };