Lines Matching refs:L1
46 grab lock L1 (owned by C)
129 Mutexes: L1, L2, L3, L4
131 A owns: L1
132 B blocked on L1
142 E->L4->D->L3->C->L2->B->L1->A
149 F->L5->B->L1->A
158 +->B->L1->A
170 G->L2->B->L1->A
178 G-+ +->B->L1->A
239 L1, L2, and L3, and four separate functions func1, func2, func3 and func4.
240 The following shows a locking order of L1->L2->L3, but may not actually
245 mutex_lock(L1);
249 mutex_unlock(L1);
254 mutex_lock(L1);
260 mutex_unlock(L1);
292 B owns L1
293 A blocked on L1
295 And thus we have the chain A->L1->B->L2->C->L3->D.