From: Marcelo Tosatti <[EMAIL PROTECTED]> Change the PCI network drivers init functions to return the PCIDev, to inform which slot has been hot-plugged.
Also record devfn on the NICInfo structure to locate for release on hot-removal. Signed-off-by: Marcelo Tosatti <[EMAIL PROTECTED]> Signed-off-by: Avi Kivity <[EMAIL PROTECTED]> diff --git a/qemu/hw/e1000.c b/qemu/hw/e1000.c index 943f25f..1eda9f3 100644 --- a/qemu/hw/e1000.c +++ b/qemu/hw/e1000.c @@ -930,7 +930,7 @@ e1000_mmio_map(PCIDevice *pci_dev, int region_num, cpu_register_physical_memory(addr, PNPMMIO_SIZE, d->mmio_index); } -void +PCIDevice * pci_e1000_init(PCIBus *bus, NICInfo *nd, int devfn) { E1000State *d; @@ -994,4 +994,6 @@ pci_e1000_init(PCIBus *bus, NICInfo *nd, int devfn) d->nd->macaddr[3], d->nd->macaddr[4], d->nd->macaddr[5]); register_savevm(info_str, d->instance, 1, nic_save, nic_load, d); + + return (PCIDevice *)d; } diff --git a/qemu/hw/eepro100.c b/qemu/hw/eepro100.c index 84d1e52..a5ea544 100644 --- a/qemu/hw/eepro100.c +++ b/qemu/hw/eepro100.c @@ -1742,7 +1742,7 @@ static void nic_save(QEMUFile * f, void *opaque) qemu_put_buffer(f, s->configuration, sizeof(s->configuration)); } -static void nic_init(PCIBus * bus, NICInfo * nd, +static PCIDevice *nic_init(PCIBus * bus, NICInfo * nd, const char *name, uint32_t device) { PCIEEPRO100State *d; @@ -1794,22 +1794,23 @@ static void nic_init(PCIBus * bus, NICInfo * nd, /* XXX: instance number ? */ register_savevm(name, 0, 3, nic_save, nic_load, s); + return (PCIDevice *)d; } -void pci_i82551_init(PCIBus * bus, NICInfo * nd, int devfn) +PCIDevice *pci_i82551_init(PCIBus * bus, NICInfo * nd, int devfn) { - nic_init(bus, nd, "i82551", i82551); + return nic_init(bus, nd, "i82551", i82551); //~ uint8_t *pci_conf = d->dev.config; } -void pci_i82557b_init(PCIBus * bus, NICInfo * nd, int devfn) +PCIDevice *pci_i82557b_init(PCIBus * bus, NICInfo * nd, int devfn) { - nic_init(bus, nd, "i82557b", i82557B); + return nic_init(bus, nd, "i82557b", i82557B); } -void pci_i82559er_init(PCIBus * bus, NICInfo * nd, int devfn) +PCIDevice *pci_i82559er_init(PCIBus * bus, NICInfo * nd, int devfn) { - nic_init(bus, nd, "i82559er", i82559ER); + return nic_init(bus, nd, "i82559er", i82559ER); } /* eof */ diff --git a/qemu/hw/ne2000.c b/qemu/hw/ne2000.c index 63bb3e2..604fc13 100644 --- a/qemu/hw/ne2000.c +++ b/qemu/hw/ne2000.c @@ -786,7 +786,7 @@ static void ne2000_map(PCIDevice *pci_dev, int region_num, register_ioport_read(addr + 0x1f, 1, 1, ne2000_reset_ioport_read, s); } -void pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn) +PCIDevice *pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn) { PCINE2000State *d; NE2000State *s; @@ -827,4 +827,6 @@ void pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn) /* XXX: instance number ? */ register_savevm("ne2000", ne2000_id++, 3, ne2000_save, ne2000_load, s); + + return (PCIDevice *)d; } diff --git a/qemu/hw/pc.h b/qemu/hw/pc.h index f879f30..453c641 100644 --- a/qemu/hw/pc.h +++ b/qemu/hw/pc.h @@ -146,7 +146,7 @@ void isa_ne2000_init(int base, qemu_irq irq, NICInfo *nd); /* virtio-net.c */ -void *virtio_net_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *virtio_net_init(PCIBus *bus, NICInfo *nd, int devfn); void virtio_net_poll(void); /* virtio-blk.h */ diff --git a/qemu/hw/pci.c b/qemu/hw/pci.c index 9182307..ccc8585 100644 --- a/qemu/hw/pci.c +++ b/qemu/hw/pci.c @@ -625,24 +625,26 @@ void pci_info(void) } /* Initialize a PCI NIC. */ -void pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn) +PCIDevice *pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn) { + PCIDevice *pci_dev; + if (strcmp(nd->model, "ne2k_pci") == 0) { - pci_ne2000_init(bus, nd, devfn); + pci_dev = pci_ne2000_init(bus, nd, devfn); } else if (strcmp(nd->model, "i82551") == 0) { - pci_i82551_init(bus, nd, devfn); + pci_dev = pci_i82551_init(bus, nd, devfn); } else if (strcmp(nd->model, "i82557b") == 0) { - pci_i82557b_init(bus, nd, devfn); + pci_dev = pci_i82557b_init(bus, nd, devfn); } else if (strcmp(nd->model, "i82559er") == 0) { - pci_i82559er_init(bus, nd, devfn); + pci_dev = pci_i82559er_init(bus, nd, devfn); } else if (strcmp(nd->model, "rtl8139") == 0) { - pci_rtl8139_init(bus, nd, devfn); + pci_dev = pci_rtl8139_init(bus, nd, devfn); } else if (strcmp(nd->model, "e1000") == 0) { - pci_e1000_init(bus, nd, devfn); + pci_dev = pci_e1000_init(bus, nd, devfn); } else if (strcmp(nd->model, "pcnet") == 0) { - pci_pcnet_init(bus, nd, devfn); + pci_dev = pci_pcnet_init(bus, nd, devfn); } else if (strcmp(nd->model, "virtio") == 0) { - virtio_net_init(bus, nd, devfn); + pci_dev = virtio_net_init(bus, nd, devfn); } else if (strcmp(nd->model, "?") == 0) { fprintf(stderr, "qemu: Supported PCI NICs: i82551 i82557b i82559er" " ne2k_pci pcnet rtl8139 e1000 virtio\n"); @@ -651,6 +653,8 @@ void pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn) fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model); exit (1); } + nd->devfn = pci_dev->devfn; + return pci_dev; } typedef struct { diff --git a/qemu/hw/pci.h b/qemu/hw/pci.h index b96348b..6e7d60b 100644 --- a/qemu/hw/pci.h +++ b/qemu/hw/pci.h @@ -87,7 +87,7 @@ typedef int (*pci_map_irq_fn)(PCIDevice *pci_dev, int irq_num); PCIBus *pci_register_bus(pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, qemu_irq *pic, int devfn_min, int nirq); -void pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn); void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len); uint32_t pci_data_read(void *opaque, uint32_t addr, int len); int pci_bus_num(PCIBus *s); @@ -116,23 +116,23 @@ void usb_ohci_init_pci(struct PCIBus *bus, int num_ports, int devfn); /* eepro100.c */ -void pci_i82551_init(PCIBus *bus, NICInfo *nd, int devfn); -void pci_i82557b_init(PCIBus *bus, NICInfo *nd, int devfn); -void pci_i82559er_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_i82551_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_i82557b_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_i82559er_init(PCIBus *bus, NICInfo *nd, int devfn); /* ne2000.c */ -void pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn); /* rtl8139.c */ -void pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn); /* e1000.c */ -void pci_e1000_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_e1000_init(PCIBus *bus, NICInfo *nd, int devfn); /* pcnet.c */ -void pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn); +PCIDevice *pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn); /* prep_pci.c */ PCIBus *pci_prep_init(qemu_irq *pic); diff --git a/qemu/hw/pcnet.c b/qemu/hw/pcnet.c index a886d87..5ecac60 100644 --- a/qemu/hw/pcnet.c +++ b/qemu/hw/pcnet.c @@ -1958,7 +1958,7 @@ static void pci_physical_memory_read(void *dma_opaque, target_phys_addr_t addr, cpu_physical_memory_read(addr, buf, len); } -void pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn) +PCIDevice *pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn) { PCNetState *d; uint8_t *pci_conf; @@ -2006,6 +2006,7 @@ void pci_pcnet_init(PCIBus *bus, NICInfo *nd, int devfn) d->pci_dev = &d->dev; pcnet_common_init(d, nd, "pcnet"); + return (PCIDevice *)d; } /* SPARC32 interface */ diff --git a/qemu/hw/rtl8139.c b/qemu/hw/rtl8139.c index 9430a8c..935ee31 100644 --- a/qemu/hw/rtl8139.c +++ b/qemu/hw/rtl8139.c @@ -3410,7 +3410,7 @@ static void rtl8139_timer(void *opaque) } #endif /* RTL8139_ONBOARD_TIMER */ -void pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn) +PCIDevice *pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn) { PCIRTL8139State *d; RTL8139State *s; @@ -3474,5 +3474,6 @@ void pci_rtl8139_init(PCIBus *bus, NICInfo *nd, int devfn) qemu_mod_timer(s->timer, rtl8139_get_next_tctr_time(s,qemu_get_clock(vm_clock))); #endif /* RTL8139_ONBOARD_TIMER */ + return (PCIDevice *)d; } diff --git a/qemu/hw/virtio-net.c b/qemu/hw/virtio-net.c index 86f9e5a..b0c6856 100644 --- a/qemu/hw/virtio-net.c +++ b/qemu/hw/virtio-net.c @@ -279,7 +279,7 @@ static void virtio_net_tx_timer(void *opaque) virtio_net_flush_tx(n, n->tx_vq); } -void *virtio_net_init(PCIBus *bus, NICInfo *nd, int devfn) +PCIDevice *virtio_net_init(PCIBus *bus, NICInfo *nd, int devfn) { VirtIONet *n; @@ -306,5 +306,5 @@ void *virtio_net_init(PCIBus *bus, NICInfo *nd, int devfn) n->tx_timer = qemu_new_timer(vm_clock, virtio_net_tx_timer, n); n->tx_timer_active = 0; - return &n->vdev; + return (PCIDevice *)n; } diff --git a/qemu/net.h b/qemu/net.h index c8ff6d6..5bb2afb 100644 --- a/qemu/net.h +++ b/qemu/net.h @@ -45,6 +45,7 @@ struct NICInfo { uint8_t macaddr[6]; const char *model; VLANState *vlan; + int devfn; }; extern int nb_nics; ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ kvm-commits mailing list kvm-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kvm-commits