Lines Matching refs:list
39 struct list_head list; member
68 list_for_each_entry(ex, orig, list) { in dev_exceptions_copy()
72 list_add_tail(&new->list, dest); in dev_exceptions_copy()
78 list_for_each_entry_safe(ex, tmp, dest, list) { in dev_exceptions_copy()
79 list_del(&ex->list); in dev_exceptions_copy()
91 list_for_each_entry_safe(ex, tmp, orig, list) { in dev_exceptions_move()
92 list_move_tail(&ex->list, dest); in dev_exceptions_move()
110 list_for_each_entry(walk, &dev_cgroup->exceptions, list) { in dev_exception_add()
124 list_add_tail_rcu(&excopy->list, &dev_cgroup->exceptions); in dev_exception_add()
138 list_for_each_entry_safe(walk, tmp, &dev_cgroup->exceptions, list) { in dev_exception_rm()
148 list_del_rcu(&walk->list); in dev_exception_rm()
158 list_for_each_entry_safe(ex, tmp, &dev_cgroup->exceptions, list) { in __dev_exception_clean()
159 list_del_rcu(&ex->list); in __dev_exception_clean()
301 list_for_each_entry_rcu(ex, &devcgroup->exceptions, list) { in devcgroup_seq_show()
332 list_for_each_entry_rcu(ex, exceptions, list) { in match_exception()
369 list_for_each_entry_rcu(ex, exceptions, list, in match_exception_partial()
535 ex = container_of(this, struct dev_exception_item, list); in revalidate_active_exceptions()