driver/core: Convert to use built-in RCU list checking
This commit applies the consolidated hlist_for_each_entry_rcu() support for lockdep conditions. Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Joel Fernandes (Google) <joel@joelfernandes.org> Signed-off-by: Paul E. McKenney <paulmck@linux.ibm.com>
This commit is contained in:
parent
7fd69b0ba4
commit
c2fa1e1bfa
@ -165,6 +165,7 @@ static inline int devtmpfs_init(void) { return 0; }
|
|||||||
/* Device links support */
|
/* Device links support */
|
||||||
extern int device_links_read_lock(void);
|
extern int device_links_read_lock(void);
|
||||||
extern void device_links_read_unlock(int idx);
|
extern void device_links_read_unlock(int idx);
|
||||||
|
extern int device_links_read_lock_held(void);
|
||||||
extern int device_links_check_suppliers(struct device *dev);
|
extern int device_links_check_suppliers(struct device *dev);
|
||||||
extern void device_links_driver_bound(struct device *dev);
|
extern void device_links_driver_bound(struct device *dev);
|
||||||
extern void device_links_driver_cleanup(struct device *dev);
|
extern void device_links_driver_cleanup(struct device *dev);
|
||||||
|
@ -68,6 +68,11 @@ void device_links_read_unlock(int idx)
|
|||||||
{
|
{
|
||||||
srcu_read_unlock(&device_links_srcu, idx);
|
srcu_read_unlock(&device_links_srcu, idx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int device_links_read_lock_held(void)
|
||||||
|
{
|
||||||
|
return srcu_read_lock_held(&device_links_srcu);
|
||||||
|
}
|
||||||
#else /* !CONFIG_SRCU */
|
#else /* !CONFIG_SRCU */
|
||||||
static DECLARE_RWSEM(device_links_lock);
|
static DECLARE_RWSEM(device_links_lock);
|
||||||
|
|
||||||
@ -91,6 +96,13 @@ void device_links_read_unlock(int not_used)
|
|||||||
{
|
{
|
||||||
up_read(&device_links_lock);
|
up_read(&device_links_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_DEBUG_LOCK_ALLOC
|
||||||
|
int device_links_read_lock_held(void)
|
||||||
|
{
|
||||||
|
return lockdep_is_held(&device_links_lock);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
#endif /* !CONFIG_SRCU */
|
#endif /* !CONFIG_SRCU */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -287,7 +287,8 @@ static int rpm_get_suppliers(struct device *dev)
|
|||||||
{
|
{
|
||||||
struct device_link *link;
|
struct device_link *link;
|
||||||
|
|
||||||
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node) {
|
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
|
||||||
|
device_links_read_lock_held()) {
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
if (!(link->flags & DL_FLAG_PM_RUNTIME) ||
|
if (!(link->flags & DL_FLAG_PM_RUNTIME) ||
|
||||||
@ -309,7 +310,8 @@ static void rpm_put_suppliers(struct device *dev)
|
|||||||
{
|
{
|
||||||
struct device_link *link;
|
struct device_link *link;
|
||||||
|
|
||||||
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node) {
|
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
|
||||||
|
device_links_read_lock_held()) {
|
||||||
if (READ_ONCE(link->status) == DL_STATE_SUPPLIER_UNBIND)
|
if (READ_ONCE(link->status) == DL_STATE_SUPPLIER_UNBIND)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
@ -1640,7 +1642,8 @@ void pm_runtime_clean_up_links(struct device *dev)
|
|||||||
|
|
||||||
idx = device_links_read_lock();
|
idx = device_links_read_lock();
|
||||||
|
|
||||||
list_for_each_entry_rcu(link, &dev->links.consumers, s_node) {
|
list_for_each_entry_rcu(link, &dev->links.consumers, s_node,
|
||||||
|
device_links_read_lock_held()) {
|
||||||
if (link->flags & DL_FLAG_STATELESS)
|
if (link->flags & DL_FLAG_STATELESS)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
@ -1662,7 +1665,8 @@ void pm_runtime_get_suppliers(struct device *dev)
|
|||||||
|
|
||||||
idx = device_links_read_lock();
|
idx = device_links_read_lock();
|
||||||
|
|
||||||
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node)
|
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
|
||||||
|
device_links_read_lock_held())
|
||||||
if (link->flags & DL_FLAG_PM_RUNTIME) {
|
if (link->flags & DL_FLAG_PM_RUNTIME) {
|
||||||
link->supplier_preactivated = true;
|
link->supplier_preactivated = true;
|
||||||
refcount_inc(&link->rpm_active);
|
refcount_inc(&link->rpm_active);
|
||||||
@ -1683,7 +1687,8 @@ void pm_runtime_put_suppliers(struct device *dev)
|
|||||||
|
|
||||||
idx = device_links_read_lock();
|
idx = device_links_read_lock();
|
||||||
|
|
||||||
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node)
|
list_for_each_entry_rcu(link, &dev->links.suppliers, c_node,
|
||||||
|
device_links_read_lock_held())
|
||||||
if (link->supplier_preactivated) {
|
if (link->supplier_preactivated) {
|
||||||
link->supplier_preactivated = false;
|
link->supplier_preactivated = false;
|
||||||
if (refcount_dec_not_one(&link->rpm_active))
|
if (refcount_dec_not_one(&link->rpm_active))
|
||||||
|
Loading…
Reference in New Issue
Block a user