Lines Matching defs:mount_t

124 #undef mount_t
221 VFS_MOUNT(mount_t mp, vnode_t devvp, user_addr_t data, vfs_context_t ctx)
261 VFS_START(mount_t mp, int flags, vfs_context_t ctx)
291 VFS_UNMOUNT(mount_t mp, int flags, vfs_context_t ctx)
338 VFS_ROOT(mount_t mp, struct vnode ** vpp, vfs_context_t ctx)
372 VFS_QUOTACTL(mount_t mp, int cmd, uid_t uid, caddr_t datap, vfs_context_t ctx)
402 VFS_GETATTR(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx)
436 VFS_SETATTR(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx)
470 VFS_SYNC(mount_t mp, int flags, vfs_context_t ctx)
504 VFS_VGET(mount_t mp, ino64_t ino, struct vnode **vpp, vfs_context_t ctx)
538 VFS_FHTOVP(mount_t mp, int fhlen, unsigned char * fhp, vnode_t * vpp, vfs_context_t ctx)
606 /* returns the cached throttle mask for the mount_t */
608 vfs_throttle_mask(mount_t mp)
613 /* returns a copy of vfs type name for the mount_t */
615 vfs_name(mount_t mp, char * buffer)
620 /* returns vfs type number for the mount_t */
622 vfs_typenum(mount_t mp)
629 vfs_mntlabel(mount_t mp)
634 /* returns command modifier flags of mount_t ie. MNT_CMDFLAGS */
636 vfs_flags(mount_t mp)
641 /* set any of the command modifier flags(MNT_CMDFLAGS) in mount_t */
643 vfs_setflags(mount_t mp, uint64_t flags)
652 /* clear any of the command modifier flags(MNT_CMDFLAGS) in mount_t */
654 vfs_clearflags(mount_t mp , uint64_t flags)
663 /* Is the mount_t ronly and upgrade read/write requested? */
665 vfs_iswriteupgrade(mount_t mp) /* ronly && MNTK_WANTRDWR */
671 /* Is the mount_t mounted ronly */
673 vfs_isrdonly(mount_t mp)
678 /* Is the mount_t mounted for filesystem synchronous writes? */
680 vfs_issynchronous(mount_t mp)
685 /* Is the mount_t mounted read/write? */
687 vfs_isrdwr(mount_t mp)
693 /* Is mount_t marked for update (ie MNT_UPDATE) */
695 vfs_isupdate(mount_t mp)
701 /* Is mount_t marked for reload (ie MNT_RELOAD) */
703 vfs_isreload(mount_t mp)
708 /* Is mount_t marked for forced unmount (ie MNT_FORCE or MNTK_FRCUNMOUNT) */
710 vfs_isforce(mount_t mp)
719 vfs_isunmount(mount_t mp)
729 vfs_64bitready(mount_t mp)
739 vfs_authcache_ttl(mount_t mp)
748 vfs_setauthcache_ttl(mount_t mp, int ttl)
757 vfs_clearauthcache_ttl(mount_t mp)
770 vfs_markdependency(mount_t mp)
781 vfs_authopaque(mount_t mp)
790 vfs_authopaqueaccess(mount_t mp)
799 vfs_setauthopaque(mount_t mp)
807 vfs_setauthopaqueaccess(mount_t mp)
815 vfs_clearauthopaque(mount_t mp)
823 vfs_clearauthopaqueaccess(mount_t mp)
831 vfs_setextendedsecurity(mount_t mp)
839 vfs_clearextendedsecurity(mount_t mp)
847 vfs_extendedsecurity(mount_t mp)
852 /* returns the max size of short symlink in this mount_t */
854 vfs_maxsymlen(mount_t mp)
859 /* set max size of short symlink on mount_t */
861 vfs_setmaxsymlen(mount_t mp, uint32_t symlen)
866 /* return a pointer to the RO vfs_statfs associated with mount_t */
868 vfs_statfs(mount_t mp)
874 vfs_getattr(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx)
893 vfs_setattr(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx)
910 /* return the private data handle stored in mount_t */
912 vfs_fsprivate(mount_t mp)
917 /* set the private data handle in mount_t */
919 vfs_setfsprivate(mount_t mp, void *mntdata)
929 * device associated with mount_t
932 vfs_devblocksize(mount_t mp) {
941 vfs_vnodecovered(mount_t mp)
961 vfs_devvp(mount_t mp)
973 * return the io attributes associated with mount_t
976 vfs_ioattr(mount_t mp, struct vfsioattr *ioattrp)
1003 * set the IO attributes associated with mount_t
1006 vfs_setioattr(mount_t mp, struct vfsioattr * ioattrp)
1613 mount_t
1619 mount_t
1622 mount_t mp;
1628 return (mount_t)NULL;
2937 mount_t mp;