From: Meelis Roos <mroos@xxxxxxxx> Date: Mon, 2 May 2011 13:39:46 +0300 (EEST) > This is 2.6.39-rc3..rc5 on Sun Ultra 1 with SBus hme card. > On about 50% of boots, hme is found fine and works. On other half boots > (not strictly in any order) SBus hme is not detected with this error: > > hme: probe of f006be34 failed with error -22 > > grepping the logs, I sometimes also find similar errors about qlogicpti: > > qpti: probe of f00798c4 failed with error -22 > > The node addresses are always the same for the device. > > 2.6.38 did not have this problem. Grant, I'm trying to diagnose this bug report which is a 2.6.39-rcX regression and I think it's a side-effect of your changes to move away from of_platform_{,un}register_driver(). Somehow an OF device driver's ->probe() is being called with a NULL "->of_match", that's why the probe returns -22 (-EINVAL) since in your transformations that is the first thing you check. There are only a few ways this can happen that I can tell, firstly the of_driver_match_device() call has to fail. It could then happen if pdrv->id_table is non-NULL, but in these two cases (drivers/net/sunhme.c:hme_sbus_driver and drivers/scsi/qlogicpti.c:qpti_sbus_driver) no id_table is assigned. The next possibility would be if pdrv->name matches the device's name, but in these two cases ("SUNW,hme" vs. "hme" and "QLGC,pti" vs. "qpti") that should not be the case either. There is only one more way this could happen, and that is if the device bus pointer is NULL. Because in that situation the match function doesn't get called and all devices can match. This is also very unlikely, because platform_device_add() always assigns pdev->dev.bus to &platform_bus_type before the device_add() call. The fact that this failure happens only on some boots for Meelis leads me to belive that some datastructure is corrupted. Perhaps there is an incorrect __init or __devinit somewhere, or we reference freed up data some other way. Any ideas? -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html