Can someone please shed some light on driver .probe
and .remove
methods serialization?
For example if there are 10 PCIe cards attached to a server and there is a common driver to detect(probe) these 10 devices, then how is the probe function called? Is it called in parallel for all the devices or executed one by one - meaning, the second call to probe won't happen until the first probe call for the first device returns?
Thanks, Prathamesh