summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/vnode.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 71e9236..bcf0987 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -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 { \
OpenPOWER on IntegriCloud