Lines Matching refs:list
38 struct list_head list; member
67 list_for_each_entry(ex, orig, list) { in dev_exceptions_copy()
71 list_add_tail(&new->list, dest); in dev_exceptions_copy()
77 list_for_each_entry_safe(ex, tmp, dest, list) { in dev_exceptions_copy()
78 list_del(&ex->list); in dev_exceptions_copy()
90 list_for_each_entry_safe(ex, tmp, orig, list) { in dev_exceptions_move()
91 list_move_tail(&ex->list, dest); in dev_exceptions_move()
109 list_for_each_entry(walk, &dev_cgroup->exceptions, list) { in dev_exception_add()
123 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions); in dev_exception_add()
137 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) { in dev_exception_rm()
147 list_del_rcu(&walk->list); in dev_exception_rm()
157 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) { in __dev_exception_clean()
158 list_del_rcu(&ex->list); in __dev_exception_clean()
300 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) { in devcgroup_seq_show()
331 list_for_each_entry_rcu(ex, exceptions, list) { in match_exception()
368 list_for_each_entry_rcu(ex, exceptions, list, in match_exception_partial()
534 ex = container_of(this, struct dev_exception_item, list); in revalidate_active_exceptions()