Lines Matching defs:l1
2269 static inline void double_lock(spinlock_t *l1, spinlock_t *l2)
2271 if (l1 > l2) {
2272 swap(l1, l2);
2275 spin_lock(l1);
2279 static inline void double_lock_irq(spinlock_t *l1, spinlock_t *l2)
2281 if (l1 > l2) {
2282 swap(l1, l2);
2285 spin_lock_irq(l1);
2289 static inline void double_raw_lock(raw_spinlock_t *l1, raw_spinlock_t *l2)
2291 if (l1 > l2) {
2292 swap(l1, l2);
2295 raw_spin_lock(l1);