- VT_PSEUDOFS and VT_PROCFS support locking now

- Remove VBLK from the list of vtypes that are ignored for locking ops.
This commit is contained in:
Jeff Roberson 2002-07-08 01:53:14 +00:00
parent 19981bcd54
commit 9725e58e44

View File

@ -459,9 +459,10 @@ extern int vfs_badlock_print;
|| (vp)->v_tag == VT_ISOFS \
|| (vp)->v_tag == VT_MSDOSFS \
|| (vp)->v_tag == VT_DEVFS \
|| (vp)->v_tag == VT_UDF) \
&& ((vp)->v_type != VBLK \
&& (vp)->v_type != VCHR) )
|| (vp)->v_tag == VT_UDF \
|| (vp)->v_tag == VT_PSEUDOFS \
|| (vp)->v_tag == VT_PROCFS) \
&& (vp)->v_type != VCHR)
#define ASSERT_VOP_LOCKED(vp, str) \
do { \