On Thu, Mar 22, 2018 at 06:53:17PM +0200, Mika Westerberg wrote: > On Thu, Mar 22, 2018 at 11:45:17AM +0100, Lukas Wunner wrote: > > Now I've thought of one. > > > > The port may have more children besides the port service devices, > > namely all the PCI devices below the port. The PM core doesn't > > impose a specific ordering on suspend/resume but will try to > > parallelize among all the children. > > > > Usually that's not what you want. On resume, you want to resume > > the port itself (including its port services) *before* resuming > > the PCI child devices. And the other way round on suspend. > > That's a good point. > > So I guess there is no way avoiding adding suspend_late/resume_early > callbacks to the pcie port service structure. I'll do that in the next > revision. Well, there *are* ways to avoid it but they might not be better. Iterating over the port services' callbacks is equivalent to ordering the port service devices after the port's PCI device but before its PCI child devices in devices_kset. That can also be achieved by adding a device link from every PCI child device (consumer) to every port service device (provider). The result however is a combinatorial explosion. Say you've got 64 down stream bridges in a PCIe switch and the upstream bridge has 3 port services, that's 3 x 64 = 192 device links. That's probably clumsier than iterating over the port services. Thanks, Lukas -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html