Searched refs:vlp2 (Results 1 – 1 of 1) sorted by relevance
1063 cache_trylock_vnodes(struct mtx *vlp1, struct mtx *vlp2) in cache_trylock_vnodes() argument1066 cache_sort_vnodes(&vlp1, &vlp2); in cache_trylock_vnodes()1072 if (!mtx_trylock(vlp2)) { in cache_trylock_vnodes()1082 cache_lock_vnodes(struct mtx *vlp1, struct mtx *vlp2) in cache_lock_vnodes() argument1085 MPASS(vlp1 != NULL || vlp2 != NULL); in cache_lock_vnodes()1086 MPASS(vlp1 <= vlp2); in cache_lock_vnodes()1090 if (vlp2 != NULL) in cache_lock_vnodes()1091 mtx_lock(vlp2); in cache_lock_vnodes()1095 cache_unlock_vnodes(struct mtx *vlp1, struct mtx *vlp2) in cache_unlock_vnodes() argument1098 MPASS(vlp1 != NULL || vlp2 != NULL); in cache_unlock_vnodes()[all …]