• Home
  • Raw
  • Download

Lines Matching refs:entry

585 	struct lock_list *entry;  in print_lock_dependencies()  local
595 list_for_each_entry(entry, &class->locks_after, entry) { in print_lock_dependencies()
596 if (DEBUG_LOCKS_WARN_ON(!entry->class)) in print_lock_dependencies()
599 print_lock_dependencies(entry->class, depth + 1); in print_lock_dependencies()
602 print_stack_trace(&entry->trace, 2); in print_lock_dependencies()
873 struct lock_list *entry; in add_lock_to_list() local
878 entry = alloc_list_entry(); in add_lock_to_list()
879 if (!entry) in add_lock_to_list()
882 if (!save_trace(&entry->trace)) in add_lock_to_list()
885 entry->class = this; in add_lock_to_list()
886 entry->distance = distance; in add_lock_to_list()
894 list_add_tail_rcu(&entry->entry, head); in add_lock_to_list()
932 print_circular_bug_header(struct lock_list *entry, unsigned int depth) in print_circular_bug_header() argument
951 print_circular_bug_entry(entry, depth); in print_circular_bug_header()
994 struct lock_list *entry; in __lockdep_count_forward_deps() local
1003 list_for_each_entry(entry, &class->locks_after, entry) in __lockdep_count_forward_deps()
1004 ret += __lockdep_count_forward_deps(entry->class, depth + 1); in __lockdep_count_forward_deps()
1025 struct lock_list *entry; in __lockdep_count_backward_deps() local
1033 list_for_each_entry(entry, &class->locks_before, entry) in __lockdep_count_backward_deps()
1034 ret += __lockdep_count_backward_deps(entry->class, depth + 1); in __lockdep_count_backward_deps()
1059 struct lock_list *entry; in check_noncircular() local
1072 list_for_each_entry(entry, &source->locks_after, entry) { in check_noncircular()
1073 if (entry->class == hlock_class(check_target)) in check_noncircular()
1074 return print_circular_bug_header(entry, depth+1); in check_noncircular()
1076 if (!check_noncircular(entry->class, depth+1)) in check_noncircular()
1077 return print_circular_bug_entry(entry, depth+1); in check_noncircular()
1104 struct lock_list *entry; in find_usage_forwards() local
1124 list_for_each_entry(entry, &source->locks_after, entry) { in find_usage_forwards()
1126 ret = find_usage_forwards(entry->class, depth+1); in find_usage_forwards()
1146 struct lock_list *entry; in find_usage_backwards() local
1174 list_for_each_entry(entry, &source->locks_before, entry) { in find_usage_backwards()
1176 ret = find_usage_backwards(entry->class, depth+1); in find_usage_backwards()
1436 struct lock_list *entry; in check_prev_add() local
1474 list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) { in check_prev_add()
1475 if (entry->class == hlock_class(next)) { in check_prev_add()
1477 entry->distance = 1; in check_prev_add()
1616 list_for_each_entry(chain, hash_head, entry) { in lookup_chain_cache()
1640 list_for_each_entry(chain, hash_head, entry) { in lookup_chain_cache()
1682 list_add_tail_rcu(&chain->entry, hash_head); in lookup_chain_cache()
3168 list_del_rcu(&list_entries[i].entry); in zap_class()