freebsd-nq/sys/fs/tmpfs
Konstantin Belousov eab626f110 Move the head of byte-level advisory lock list from the
filesystem-specific vnode data to the struct vnode. Provide the
default implementation for the vop_advlock and vop_advlockasync.
Purge the locks on the vnode reclaim by using the lf_purgelocks().
The default implementation is augmented for the nfs and smbfs.
In the nfs_advlock, push the Giant inside the nfs_dolock.

Before the change, the vop_advlock and vop_advlockasync have taken the
unlocked vnode and dereferenced the fs-private inode data, racing with
with the vnode reclamation due to forced unmount. Now, the vop_getattr
under the shared vnode lock is used to obtain the inode size, and
later, in the lf_advlockasync, after locking the vnode interlock, the
VI_DOOMED flag is checked to prevent an operation on the doomed vnode.

The implementation of the lf_purgelocks() is submitted by dfr.

Reported by:	kris
Tested by:	kris, pho
Discussed with:	jeff, dfr
MFC after:	2 weeks
2008-04-16 11:33:32 +00:00
..
tmpfs_fifoops.c Space/style cleanups after last set of commits. 2007-06-28 02:39:31 +00:00
tmpfs_fifoops.h Staticify most of fifo/vn operations, they should not 2007-06-28 02:36:41 +00:00
tmpfs_subr.c Axe the 'thread' argument from VOP_ISLOCKED() and lockstatus() as it is 2008-02-25 18:45:57 +00:00
tmpfs_vfsops.c Move the head of byte-level advisory lock list from the 2008-04-16 11:33:32 +00:00
tmpfs_vnops.c Move the head of byte-level advisory lock list from the 2008-04-16 11:33:32 +00:00
tmpfs_vnops.h Staticify most of fifo/vn operations, they should not 2007-06-28 02:36:41 +00:00
tmpfs.h Move the head of byte-level advisory lock list from the 2008-04-16 11:33:32 +00:00