Lines Matching defs:vfs
59 struct vfs {
60 struct vfs *vfs_next; /* next vfs in vfs list */
61 struct vfsops *vfs_op; /* operations on vfs */
71 * vfs flags.
72 * VFS_MLOCK lock the vfs so that name lookup cannot proceed past the vfs.
75 #define VFS_RDONLY 0x01 /* read only vfs */
76 #define VFS_MLOCK 0x02 /* lock vfs so that subtree is stable */
137 extern int vfs_add(); /* add a new vfs to mounted vfs list */
138 extern void vfs_remove(); /* remove a vfs from mounted vfs list */
139 extern int vfs_lock(); /* lock a vfs */
140 extern void vfs_unlock(); /* unlock a vfs */
141 extern struct vfs *getvfs(); /* return vfs given fsid */
149 (VFSP)->vfs_next = (struct vfs *)0; \
159 extern struct vfs *rootvfs; /* ptr to root vfs structure */
161 extern struct vfssw *vfsNVFS; /* vfs switch table end marker */