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

driver core: Rename dev_links_info.defer_sync to defer_hook

The defer_sync field is used as a hook to add the device to the
deferred_sync list. Rename it so that it's more meaningful for the next
patch that'll also use this field as a hook to a deferred_fw_devlink
list.
Signed-off-by: default avatarSaravana Kannan <saravanak@google.com>
Reviewed-by: default avatarRafael J. Wysocki <rafael@kernel.org>
Tested-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20200701194259.3337652-3-saravanak@google.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cec72f3e
...@@ -754,11 +754,11 @@ static void __device_links_queue_sync_state(struct device *dev, ...@@ -754,11 +754,11 @@ static void __device_links_queue_sync_state(struct device *dev,
*/ */
dev->state_synced = true; dev->state_synced = true;
if (WARN_ON(!list_empty(&dev->links.defer_sync))) if (WARN_ON(!list_empty(&dev->links.defer_hook)))
return; return;
get_device(dev); get_device(dev);
list_add_tail(&dev->links.defer_sync, list); list_add_tail(&dev->links.defer_hook, list);
} }
/** /**
...@@ -776,8 +776,8 @@ static void device_links_flush_sync_list(struct list_head *list, ...@@ -776,8 +776,8 @@ static void device_links_flush_sync_list(struct list_head *list,
{ {
struct device *dev, *tmp; struct device *dev, *tmp;
list_for_each_entry_safe(dev, tmp, list, links.defer_sync) { list_for_each_entry_safe(dev, tmp, list, links.defer_hook) {
list_del_init(&dev->links.defer_sync); list_del_init(&dev->links.defer_hook);
if (dev != dont_lock_dev) if (dev != dont_lock_dev)
device_lock(dev); device_lock(dev);
...@@ -815,12 +815,12 @@ void device_links_supplier_sync_state_resume(void) ...@@ -815,12 +815,12 @@ void device_links_supplier_sync_state_resume(void)
if (defer_sync_state_count) if (defer_sync_state_count)
goto out; goto out;
list_for_each_entry_safe(dev, tmp, &deferred_sync, links.defer_sync) { list_for_each_entry_safe(dev, tmp, &deferred_sync, links.defer_hook) {
/* /*
* Delete from deferred_sync list before queuing it to * Delete from deferred_sync list before queuing it to
* sync_list because defer_sync is used for both lists. * sync_list because defer_hook is used for both lists.
*/ */
list_del_init(&dev->links.defer_sync); list_del_init(&dev->links.defer_hook);
__device_links_queue_sync_state(dev, &sync_list); __device_links_queue_sync_state(dev, &sync_list);
} }
out: out:
...@@ -838,8 +838,8 @@ late_initcall(sync_state_resume_initcall); ...@@ -838,8 +838,8 @@ 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) && dev_has_sync_state(sup)) if (list_empty(&sup->links.defer_hook) && dev_has_sync_state(sup))
list_add_tail(&sup->links.defer_sync, &deferred_sync); list_add_tail(&sup->links.defer_hook, &deferred_sync);
} }
static void device_link_drop_managed(struct device_link *link) static void device_link_drop_managed(struct device_link *link)
...@@ -1052,7 +1052,7 @@ void device_links_driver_cleanup(struct device *dev) ...@@ -1052,7 +1052,7 @@ void device_links_driver_cleanup(struct device *dev)
WRITE_ONCE(link->status, DL_STATE_DORMANT); WRITE_ONCE(link->status, DL_STATE_DORMANT);
} }
list_del_init(&dev->links.defer_sync); list_del_init(&dev->links.defer_hook);
__device_links_no_driver(dev); __device_links_no_driver(dev);
device_links_write_unlock(); device_links_write_unlock();
...@@ -2171,7 +2171,7 @@ void device_initialize(struct device *dev) ...@@ -2171,7 +2171,7 @@ void device_initialize(struct device *dev)
INIT_LIST_HEAD(&dev->links.consumers); INIT_LIST_HEAD(&dev->links.consumers);
INIT_LIST_HEAD(&dev->links.suppliers); INIT_LIST_HEAD(&dev->links.suppliers);
INIT_LIST_HEAD(&dev->links.needs_suppliers); INIT_LIST_HEAD(&dev->links.needs_suppliers);
INIT_LIST_HEAD(&dev->links.defer_sync); INIT_LIST_HEAD(&dev->links.defer_hook);
dev->links.status = DL_DEV_NO_DRIVER; dev->links.status = DL_DEV_NO_DRIVER;
} }
EXPORT_SYMBOL_GPL(device_initialize); EXPORT_SYMBOL_GPL(device_initialize);
......
...@@ -433,7 +433,7 @@ enum dl_dev_state { ...@@ -433,7 +433,7 @@ enum dl_dev_state {
* @suppliers: List of links to supplier devices. * @suppliers: List of links to supplier devices.
* @consumers: List of links to consumer devices. * @consumers: List of links to consumer devices.
* @needs_suppliers: Hook to global list of devices waiting for suppliers. * @needs_suppliers: Hook to global list of devices waiting for suppliers.
* @defer_sync: Hook to global list of devices that have deferred sync_state. * @defer_hook: Hook to global list of devices that have deferred sync_state.
* @need_for_probe: If needs_suppliers is on a list, this indicates if the * @need_for_probe: If needs_suppliers is on a list, this indicates if the
* suppliers are needed for probe or not. * suppliers are needed for probe or not.
* @status: Driver status information. * @status: Driver status information.
...@@ -442,7 +442,7 @@ struct dev_links_info { ...@@ -442,7 +442,7 @@ struct dev_links_info {
struct list_head suppliers; struct list_head suppliers;
struct list_head consumers; struct list_head consumers;
struct list_head needs_suppliers; struct list_head needs_suppliers;
struct list_head defer_sync; struct list_head defer_hook;
bool need_for_probe; bool need_for_probe;
enum dl_dev_state status; enum dl_dev_state status;
}; };
......
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