qemu-s390x
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [qemu-s390x] [PATCH v2 09/10] pci/shpc: perform unplug via the hotpl


From: David Hildenbrand
Subject: Re: [qemu-s390x] [PATCH v2 09/10] pci/shpc: perform unplug via the hotplug handler
Date: Tue, 20 Nov 2018 11:11:46 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.3.0

>> diff --git a/hw/pci-bridge/pcie_pci_bridge.c 
>> b/hw/pci-bridge/pcie_pci_bridge.c
>> index c634353b06..7c667bc97c 100644
>> --- a/hw/pci-bridge/pcie_pci_bridge.c
>> +++ b/hw/pci-bridge/pcie_pci_bridge.c
>> @@ -150,6 +150,19 @@ static void pcie_pci_bridge_plug_cb(HotplugHandler 
>> *hotplug_dev,
>>      shpc_device_plug_cb(hotplug_dev, dev, errp);
>>  }
>>  
>> +static void pcie_pci_bridge_unplug_cb(HotplugHandler *hotplug_dev,
>> +                                      DeviceState *dev, Error **errp)
>> +{
>> +    PCIDevice *pci_hotplug_dev = PCI_DEVICE(hotplug_dev);
>> +
>> +    if (!shpc_present(pci_hotplug_dev)) {
>> +        error_setg(errp, "standard hotplug controller has been disabled for 
>> "
>> +                   "this %s", TYPE_PCIE_PCI_BRIDGE_DEV);
> Is it possible to reach here at all?

Right, this should right now not be possible. I'll turn this into an

g_assert(shpc_present(pci_hotplug_dev));

(if we every support surprise removal, we'll have to rethink either way)

> 
>> +        return;
>> +    }
>> +    shpc_device_unplug_cb(hotplug_dev, dev, errp);
>> +}
> 
> you probably can share this function impl. with pci_bridge_dev_unplug_cb()
> if you use object_get_typename().

The same holds for all three functions (+ later pre_plug), however can
we be sure there won't be differences in the near future?

If we don't expect these functions to differ, I can add a patch to
factor the existing two functions (plug/unplug) out.

-- 

Thanks,

David / dhildenb



reply via email to

[Prev in Thread] Current Thread [Next in Thread]