Do not use null_bypass for VOP_ISLOCKED, directly call default

implementation. null_bypass cannot work for the !nullfs-vnodes, in
particular, for VBAD vnodes.

In collaboration with:	kib
This commit is contained in:
Peter Holm 2009-03-18 13:54:35 +00:00
parent 28551690e0
commit aa73f8c7a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189961

View file

@ -724,6 +724,7 @@ struct vop_vector null_vnodeops = {
.vop_getattr = null_getattr,
.vop_getwritemount = null_getwritemount,
.vop_inactive = null_inactive,
.vop_islocked = vop_stdislocked,
.vop_lock1 = null_lock,
.vop_lookup = null_lookup,
.vop_open = null_open,