Revision a5fce077

b/hw/pci_bridge.c
139 139
void pci_bridge_write_config(PCIDevice *d,
140 140
                             uint32_t address, uint32_t val, int len)
141 141
{
142
    PCIBridge *s = container_of(d, PCIBridge, dev);
143
    uint16_t oldctl = pci_get_word(d->config + PCI_BRIDGE_CONTROL);
144
    uint16_t newctl;
145

  
142 146
    pci_default_write_config(d, address, val, len);
143 147

  
144 148
    if (/* io base/limit */
......
147 151
        /* memory base/limit, prefetchable base/limit and
148 152
           io base/limit upper 16 */
149 153
        ranges_overlap(address, len, PCI_MEMORY_BASE, 20)) {
150
        PCIBridge *s = container_of(d, PCIBridge, dev);
151 154
        pci_bridge_update_mappings(&s->sec_bus);
152 155
    }
156

  
157
    newctl = pci_get_word(d->config + PCI_BRIDGE_CONTROL);
158
    if (~oldctl & newctl & PCI_BRIDGE_CTL_BUS_RESET) {
159
        /* Trigger hot reset on 0->1 transition. */
160
        pci_bus_reset(&s->sec_bus);
161
    }
153 162
}
154 163

  
155 164
void pci_bridge_disable_base_limit(PCIDevice *dev)

Also available in: Unified diff