- Add VBAD to the list of vnodes that are ignored on locking operations.

This commit is contained in:
Jeff Roberson 2002-07-29 07:45:57 +00:00
parent aa2ada4e96
commit 3b82505bb2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100868

View File

@ -464,7 +464,7 @@ extern int vfs_badlock_print;
* no longer ok to have an unlocked VFS.
*/
#define IGNORE_LOCK(vp) ((vp)->v_type == VCHR)
#define IGNORE_LOCK(vp) ((vp)->v_type == VCHR || (vp)->v_type == VBAD)
#define ASSERT_VOP_LOCKED(vp, str) \
do { \