X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fpci.c;h=1f4976b9438e4326b6f2686d2994e04c618ac6e7;hb=1bd025c8e158b2b5f4c8e8ccf1bcf8d702dde037;hp=5a12909bb2a7a716356e88d98147b8c0a8520f71;hpb=72420d58d18ec71d4777d029daaf0c6a1c820b32;p=palacios.git diff --git a/palacios/src/devices/pci.c b/palacios/src/devices/pci.c index 5a12909..1f4976b 100644 --- a/palacios/src/devices/pci.c +++ b/palacios/src/devices/pci.c @@ -597,11 +597,6 @@ static int data_port_write(struct guest_info * core, ushort_t port, void * src, -static int pci_free(struct vm_device * dev) { - - return 0; -} - static void init_pci_busses(struct pci_internal * pci_state) { @@ -615,10 +610,33 @@ static void init_pci_busses(struct pci_internal * pci_state) { } +static int pci_free(struct pci_internal * pci_state) { + int i; + + + // cleanup devices + for (i = 0; i < PCI_BUS_COUNT; i++) { + struct pci_bus * bus = &(pci_state->bus_list[i]); + struct rb_node * node = v3_rb_first(&(bus->devices)); + struct pci_device * dev = NULL; + + while (node) { + dev = rb_entry(node, struct pci_device, dev_tree_node); + node = v3_rb_next(node); + + v3_rb_erase(&(dev->dev_tree_node), &(bus->devices)); + V3_Free(dev); + } + + } + + V3_Free(pci_state); + return 0; +} static struct v3_device_ops dev_ops = { - .free = pci_free, + .free = (int (*)(void *))pci_free, };