Commit 77036165 authored by Saravana Kannan's avatar Saravana Kannan Committed by Greg Kroah-Hartman

driver core: Skip unnecessary work when device doesn't have sync_state()

A bunch of busy work is done for devices that don't have sync_state()
support. Stop doing the busy work.
Signed-off-by: default avatarSaravana Kannan <saravanak@google.com>
Link: https://lore.kernel.org/r/20200221080510.197337-4-saravanak@google.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ac338acf
...@@ -718,6 +718,8 @@ static void __device_links_queue_sync_state(struct device *dev, ...@@ -718,6 +718,8 @@ static void __device_links_queue_sync_state(struct device *dev,
{ {
struct device_link *link; struct device_link *link;
if (!dev_has_sync_state(dev))
return;
if (dev->state_synced) if (dev->state_synced)
return; return;
...@@ -819,7 +821,7 @@ late_initcall(sync_state_resume_initcall); ...@@ -819,7 +821,7 @@ late_initcall(sync_state_resume_initcall);
static void __device_links_supplier_defer_sync(struct device *sup) static void __device_links_supplier_defer_sync(struct device *sup)
{ {
if (list_empty(&sup->links.defer_sync)) if (list_empty(&sup->links.defer_sync) && dev_has_sync_state(sup))
list_add_tail(&sup->links.defer_sync, &deferred_sync); list_add_tail(&sup->links.defer_sync, &deferred_sync);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment