K 10 svn:author V 7 rwatson K 8 svn:date V 27 2000-01-29T15:22:58.000000Z K 7 svn:log V 454 This patch fixes a locking bug that can result in deadlock if the codepath is followed. From the PR: vclean calls vrele leading to deadlock (if usecount > 0) vclean() calls vrele() if v_usecount of the node was higher than one. But before calling it, it sets the VXLOCK flag, which will make vn_lock called from vrele dead-lock. PR: kern/15117 Submitted by: Assar Westerlund Reviewed by: rwatson Obtained from: NetBSD END