Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

PM / runtime: Fix handling of suppliers with disabled runtime PM

Prevent rpm_get_suppliers() from returning an error code if runtime
PM is disabled for one or more of the supplier devices it wants to
runtime-resume, so as to make runtime PM work for devices with links
to suppliers that don't use runtime PM (such links may be created
during device enumeration even before it is known whether or not
runtime PM will be enabled for the devices in question, for example).

Fixes: 21d5c57b3726 (PM / runtime: Use device links)
Reported-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Lukas Wunner <lukas@wunner.de>
Tested-by: Adrian Hunter <adrian.hunter@intel.com>

+2 -1
+2 -1
drivers/base/power/runtime.c
··· 276 276 continue; 277 277 278 278 retval = pm_runtime_get_sync(link->supplier); 279 - if (retval < 0) { 279 + /* Ignore suppliers with disabled runtime PM. */ 280 + if (retval < 0 && retval != -EACCES) { 280 281 pm_runtime_put_noidle(link->supplier); 281 282 return retval; 282 283 }