On 14 July 2017 at 12:51, Sudeep Holla <sudeep.holla@xxxxxxx> wrote: > If the genpd->attach_dev or genpd->power_on fails, genpd_dev_pm_attach > may return -EPROBE_DEFER initially. However genpd_alloc_dev_data sets > the PM domain for the device unconditionally. > > When subsequent attempts are made to call genpd_dev_pm_attach, it may > return -EEXISTS checking dev->pm_domain without re-attempting to call > attach_dev or power_on. > > platform_drv_probe then attempts to call drv->probe as the return value > -EEXIST != -EPROBE_DEFER, which may end up in a situation where the > device is accessed without it's power domain switched on. > > Fixes: f104e1e5ef57 ("PM / Domains: Re-order initialization of generic_pm_domain_data") > Cc: "Rafael J. Wysocki" <rjw@xxxxxxxxxxxxx> > Cc: Kevin Hilman <khilman@xxxxxxxxxx> > Cc: Ulf Hansson <ulf.hansson@xxxxxxxxxx> > Cc: <stable@xxxxxxxxxxxxxxx> # v4.0+ > Signed-off-by: Sudeep Holla <sudeep.holla@xxxxxxx> Acked-by: Ulf Hansson <ulf.hansson@xxxxxxxxxx> > --- > drivers/base/power/domain.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > Hi, > > I have added Cc/Fixes tags based on the original commit that caused the issue. > I need to workout a patch that can cleanly apply before commit 989561de9b51 > ("PM / Domains: add setter for dev.pm_domain"), i.e. for v4.0.x to v4.4.x > This patch should apply from v4.5.x onwards. Thanks for checking this. Perhaps we should change the stable tag to # v4.5+ instead then? Otherwise the stable people will just report problems when trying to apply it. > > Let me know if I got anything wrong. > > v1->v2: Moved dev_pm_domain_set(dev, NULL) from genpd_free_dev_data > > Regards, > Sudeep [...] Kind regards Uffe