/titanic_50/usr/src/cmd/fs.d/autofs/ |
H A D | autod_autofs.c | 149 if ((alp->action.action_list_entry_u.mounta.spec = in mount_autofs() 152 if ((alp->action.action_list_entry_u.mounta.dir = in mount_autofs() 171 alp->action.action_list_entry_u.mounta.optptr = buf; in mount_autofs() 172 alp->action.action_list_entry_u.mounta.optlen = strlen(buf) + 1; in mount_autofs() 173 alp->action.action_list_entry_u.mounta.flags = in mount_autofs() 175 if ((alp->action.action_list_entry_u.mounta.fstype = in mount_autofs() 178 alp->action.action_list_entry_u.mounta.dataptr = (char *)fnip; in mount_autofs() 179 alp->action.action_list_entry_u.mounta.datalen = sizeof (*fnip); in mount_autofs() 189 alp->action.action_list_entry_u.mounta.dataptr = NULL; in mount_autofs() 190 alp->action.action_list_entry_u.mounta.datalen = 0; in mount_autofs() [all …]
|
H A D | automount.h | 258 struct mounta; /* defined in sys/vfs.h */ 295 extern void free_mounta(struct mounta *);
|
H A D | autod_xdr.c | 110 xdr_mounta(register XDR *xdrs, struct mounta *objp) in xdr_mounta() 139 if (!xdr_mounta(xdrs, &objp->action_list_entry_u.mounta)) in xdr_action_list_entry()
|
H A D | autod_main.c | 568 struct mounta *mp; in free_action_list() 573 mp = &(p->action.action_list_entry_u.mounta); in free_action_list()
|
/titanic_50/usr/src/uts/common/syscall/ |
H A D | mount.c | 73 struct mounta *uap; in mount() 75 struct mounta native; in mount() 94 uap = (struct mounta *)lp; in mount()
|
/titanic_50/usr/src/uts/common/rpcsvc/ |
H A D | autofs_prot.x | 151 struct mounta mounta; variable
|
/titanic_50/usr/src/uts/common/sys/ |
H A D | vfs.h | 298 struct mounta { struct 331 int (*vfs_mount)(vfs_t *, vnode_t *, struct mounta *, cred_t *); \ 348 extern int fsop_mount(vfs_t *, vnode_t *, struct mounta *, cred_t *); 480 int domount(char *, struct mounta *, vnode_t *, struct cred *,
|
H A D | fem.h | 284 struct mounta *uap, cred_t *cr); \ 406 extern int vfsnext_mount(fsemarg_t *vf, vnode_t *mvp, struct mounta *uap,
|
/titanic_50/usr/src/ucbhead/sys/ |
H A D | vfs.h | 112 struct mounta { struct 133 int (*vfs_mount)(struct vfs *, struct vnode *, struct mounta *, argument
|
/titanic_50/usr/src/lib/libzfs/common/ |
H A D | libzfs_changelist.c | 492 char mounta[MAXPATHLEN]; in compare_mountpoints() local 505 hasmounta = (zfs_prop_get(ca->cn_handle, ZFS_PROP_MOUNTPOINT, mounta, in compare_mountpoints() 506 sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0); in compare_mountpoints() 517 return (strcmp(mountb, mounta)); in compare_mountpoints()
|
H A D | libzfs_mount.c | 1043 char mounta[MAXPATHLEN]; in libzfs_dataset_cmp() local 1048 verify(zfs_prop_get(*za, ZFS_PROP_MOUNTPOINT, mounta, in libzfs_dataset_cmp() 1049 sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0); in libzfs_dataset_cmp() 1055 return (strcmp(mounta, mountb)); in libzfs_dataset_cmp() 1138 const char *mounta = *((char **)a); in mountpoint_compare() local 1141 return (strcmp(mountb, mounta)); in mountpoint_compare()
|
/titanic_50/usr/src/uts/common/fs/autofs/ |
H A D | auto_xdr.c | 57 bool_t xdr_mounta(XDR *, struct mounta *); 152 if (!xdr_mounta(xdrs, &objp->action_list_entry_u.mounta)) in xdr_action_list_entry() 227 xdr_mounta(XDR *xdrs, struct mounta *objp) in xdr_mounta()
|
H A D | auto_subr.c | 855 auto_free_autofs_args(struct mounta *m) in auto_free_autofs_args() 877 struct mounta *m; in auto_free_action_list() 881 m = &alp->action.action_list_entry_u.mounta; in auto_free_action_list() 883 fstype = alp->action.action_list_entry_u.mounta.fstype; in auto_free_action_list() 884 m = &alp->action.action_list_entry_u.mounta; in auto_free_action_list() 907 struct mounta *m; in auto_invalid_autofs() 917 m = &p->action.action_list_entry_u.mounta; in auto_invalid_autofs() 1007 struct mounta *m, margs; in auto_perform_actions() 1086 m = &p->action.action_list_entry_u.mounta; in auto_perform_actions()
|
H A D | auto_vfsops.c | 141 static int auto_mount(vfs_t *, vnode_t *, struct mounta *, cred_t *); 347 auto_mount(vfs_t *vfsp, vnode_t *vp, struct mounta *uap, cred_t *cr) in auto_mount()
|
/titanic_50/usr/src/uts/common/fs/ |
H A D | vfs.c | 233 fsop_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr) in fsop_mount() 689 struct mounta mounta = { /* fake mounta for devfs_mount() */ in vfs_mountdevices() local 723 if (VFS_MOUNT(&devices, mvp, &mounta, CRED())) in vfs_mountdevices() 767 struct mounta mounta = { /* fake mounta for sdev_mount() */ in vfs_mountdev1() local 801 if (VFS_MOUNT(&dev, mvp, &mounta, CRED())) in vfs_mountdev1() 844 struct mounta mounta; in vfs_mountfs() local 847 bzero(&mounta, sizeof (mounta)); in vfs_mountfs() 848 mounta.flags = MS_SYSSPACE | MS_DATA; in vfs_mountfs() 849 mounta.fstype = module; in vfs_mountfs() 850 mounta.spec = spec; in vfs_mountfs() [all …]
|
/titanic_50/usr/src/uts/common/fs/devfs/ |
H A D | devfs_vfsops.c | 65 static int devfs_mount(struct vfs *, struct vnode *, struct mounta *, 177 devfs_mount(struct vfs *vfsp, struct vnode *mvp, struct mounta *uap, in devfs_mount()
|
/titanic_50/usr/src/uts/common/fs/dev/ |
H A D | sdev_vfsops.c | 83 static int sdev_mount(struct vfs *, struct vnode *, struct mounta *, 189 sdev_mount(struct vfs *vfsp, struct vnode *mvp, struct mounta *uap, in sdev_mount()
|
/titanic_50/usr/src/uts/common/fs/objfs/ |
H A D | objfs_vfs.c | 158 objfs_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr) in objfs_mount()
|
/titanic_50/usr/src/uts/common/fs/sharefs/ |
H A D | sharefs_vfsops.c | 183 sharefs_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr) in sharefs_mount()
|
/titanic_50/usr/src/lib/libshare/common/ |
H A D | libshare_zfs.c | 218 char mounta[MAXPATHLEN]; in mountpoint_compare() local 221 verify(zfs_prop_get(*za, ZFS_PROP_MOUNTPOINT, mounta, in mountpoint_compare() 222 sizeof (mounta), NULL, NULL, 0, B_FALSE) == 0); in mountpoint_compare() 226 return (strcmp(mounta, mountb)); in mountpoint_compare()
|
/titanic_50/usr/src/uts/common/fs/tmpfs/ |
H A D | tmp_vfsops.c | 62 struct mounta *, struct cred *); 232 struct mounta *uap, in tmp_mount()
|
/titanic_50/usr/src/uts/common/fs/mntfs/ |
H A D | mntvfsops.c | 179 struct mounta *uap, struct cred *cr) in mntmount()
|
/titanic_50/usr/src/uts/common/fs/proc/ |
H A D | prvfsops.c | 192 struct mounta *uap, struct cred *cr) in prmount()
|
/titanic_50/usr/src/uts/common/fs/smbclnt/smbfs/ |
H A D | smbfs_vfsops.c | 150 static int smbfs_mount(vfs_t *, vnode_t *, struct mounta *, cred_t *); 337 smbfs_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr) in smbfs_mount()
|
/titanic_50/usr/src/uts/common/fs/bootfs/ |
H A D | bootfs_vfsops.c | 65 bootfs_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr) in bootfs_mount()
|