Lines Matching refs:src
279 static inline void lock_time_add(struct lock_time *src, struct lock_time *dst) in lock_time_add() argument
281 if (!src->nr) in lock_time_add()
284 if (src->max > dst->max) in lock_time_add()
285 dst->max = src->max; in lock_time_add()
287 if (src->min < dst->min || !dst->nr) in lock_time_add()
288 dst->min = src->min; in lock_time_add()
290 dst->total += src->total; in lock_time_add()
291 dst->nr += src->nr; in lock_time_add()
1869 print_circular_lock_scenario(struct held_lock *src, in print_circular_lock_scenario() argument
1873 struct lock_class *source = hlock_class(src); in print_circular_lock_scenario()
2147 check_noncircular(struct held_lock *src, struct held_lock *target, in check_noncircular() argument
2154 bfs_init_root(&src_entry, src); in check_noncircular()
2170 print_circular_bug(&src_entry, target_entry, src, target); in check_noncircular()
2877 check_redundant(struct held_lock *src, struct held_lock *target) in check_redundant() argument
2883 bfs_init_root(&src_entry, src); in check_redundant()
2894 src_entry.only_xr = src->read == 0; in check_redundant()
2914 check_redundant(struct held_lock *src, struct held_lock *target) in check_redundant() argument