Lines Matching refs:ptl2
994 spinlock_t *ptl2) in double_pt_lock() argument
996 __acquires(ptl2) in double_pt_lock()
998 if (ptl1 > ptl2) in double_pt_lock()
999 swap(ptl1, ptl2); in double_pt_lock()
1002 if (ptl1 != ptl2) in double_pt_lock()
1003 spin_lock_nested(ptl2, SINGLE_DEPTH_NESTING); in double_pt_lock()
1005 __acquire(ptl2); in double_pt_lock()
1009 spinlock_t *ptl2) in double_pt_unlock() argument
1011 __releases(ptl2) in double_pt_unlock()
1014 if (ptl1 != ptl2) in double_pt_unlock()
1015 spin_unlock(ptl2); in double_pt_unlock()
1017 __release(ptl2); in double_pt_unlock()