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
220 L1, L2, and L3, and four separate functions func1, func2, func3 and func4.
221 The following shows a locking order of L1->L2->L3, but may not actually
226 mutex_lock(L1);
230 mutex_unlock(L1);
235 mutex_lock(L1);
241 mutex_unlock(L1);
273 B owns L1
274 A blocked on L1
276 And thus we have the chain A->L1->B->L2->C->L3->D.