Lines Matching refs:L1
47 grab lock L1 (owned by C)
139 Mutexes: L1, L2, L3, L4
141 A owns: L1
142 B blocked on L1
152 E->L4->D->L3->C->L2->B->L1->A
159 F->L5->B->L1->A
168 +->B->L1->A
180 G->L2->B->L1->A
188 G-+ +->B->L1->A
230 L1, L2, and L3, and four separate functions func1, func2, func3 and func4.
231 The following shows a locking order of L1->L2->L3, but may not actually
236 mutex_lock(L1);
240 mutex_unlock(L1);
245 mutex_lock(L1);
251 mutex_unlock(L1);
283 B owns L1
284 A blocked on L1
286 And thus we have the chain A->L1->B->L2->C->L3->D.