Lines Matching refs:ptl2
997 spinlock_t *ptl2) in double_pt_lock() argument
999 __acquires(ptl2) in double_pt_lock()
1001 if (ptl1 > ptl2) in double_pt_lock()
1002 swap(ptl1, ptl2); in double_pt_lock()
1005 if (ptl1 != ptl2) in double_pt_lock()
1006 spin_lock_nested(ptl2, SINGLE_DEPTH_NESTING); in double_pt_lock()
1008 __acquire(ptl2); in double_pt_lock()
1012 spinlock_t *ptl2) in double_pt_unlock() argument
1014 __releases(ptl2) in double_pt_unlock()
1017 if (ptl1 != ptl2) in double_pt_unlock()
1018 spin_unlock(ptl2); in double_pt_unlock()
1020 __release(ptl2); in double_pt_unlock()