mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
28551690e0
commit
aa73f8c7a2
1 changed files with 1 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue