Searched refs:vlp2 (Results 1 – 1 of 1) sorted by relevance
1009 cache_trylock_vnodes(struct mtx *vlp1, struct mtx *vlp2) in cache_trylock_vnodes() argument1012 cache_sort_vnodes(&vlp1, &vlp2); in cache_trylock_vnodes()1018 if (!mtx_trylock(vlp2)) { in cache_trylock_vnodes()1028 cache_lock_vnodes(struct mtx *vlp1, struct mtx *vlp2) in cache_lock_vnodes() argument1031 MPASS(vlp1 != NULL || vlp2 != NULL); in cache_lock_vnodes()1032 MPASS(vlp1 <= vlp2); in cache_lock_vnodes()1036 if (vlp2 != NULL) in cache_lock_vnodes()1037 mtx_lock(vlp2); in cache_lock_vnodes()1041 cache_unlock_vnodes(struct mtx *vlp1, struct mtx *vlp2) in cache_unlock_vnodes() argument1044 MPASS(vlp1 != NULL || vlp2 != NULL); in cache_unlock_vnodes()[all …]