/titanic_50/usr/src/cmd/svc/milestone/ |
H A D | fs-minimal | 49 if [ -n "$mountp" ]; then 50 mounted $mountp $mntopts $fstype < /etc/mnttab && continue 51 checkfs $fsckdev $fstype $mountp || exit $SMF_EXIT_ERR_FATAL 52 mountfs -O $mountp $fstype $mntopts - || 77 while read mountp ; do 78 if [ "x$mountp" != "x" -a "$mountp" != "legacy" ] ; then 79 mounted $mountp - zfs < /etc/mnttab && continue 80 /sbin/zfs mount $be$mountp
|
H A D | fs-usr | 91 checkfs $fsckdev $fstype $mountp || exit $SMF_EXIT_ERR_FATAL 98 mountfs -m $mountp $fstype $mntopts - || exit $SMF_EXIT_ERR_FATAL 107 if [ "$mountp" ]; then 110 checkfs $fsckdev $fstype $mountp || 138 if [ "$mountp" ]; then 139 checkfs $fsckdev $fstype $mountp || exit $SMF_EXIT_ERR_FATAL 140 mountfs - $mountp $fstype $mntopts - || exit $SMF_EXIT_ERR_FATAL 147 if [ "$mountp" -a -d /dev/fd ]; then
|
H A D | fs-root | 77 if [ -n "$mountp" ]; then 125 mountp=`/sbin/zfs get -H -o value mountpoint $special/usr 2>/dev/null` 130 if [ "x$mountp" = "x/usr" ] ; then 151 if [ -n "$mountp" ]; then
|
/titanic_50/usr/src/cmd/iscsid/ |
H A D | iscsi-initiator | 99 while read special fsckdev mountp fstype fsckpass automnt mntopts; do 120 /usr/bin/grep " $mountp " /etc/mnttab >/dev/null \ 127 iscsilist="$iscsilist $mountp" 139 0|40) iscsilist="$iscsilist $mountp" 142 32) checkfs $fsckdev $fstype $mountp 143 iscsilist="$iscsilist $mountp" 176 while read special fsckdev mountp fstype fsckpass automnt mntopts; do 185 /usr/bin/grep " $mountp " /etc/mnttab >/dev/null 2>&1 189 iscsilist="$iscsilist $mountp"
|
/titanic_50/usr/src/cmd/fs.d/tmpfs/ |
H A D | mount.c | 48 in_mnttab(char *mountp) in in_mnttab() argument 58 strcmp(mntent.mnt_mountp, mountp) == 0 && in in_mnttab() 74 char *mountp; in main() local 154 mountp = argv[optind++]; in main() 160 special, mountp, mflg, MNTTYPE_TMPFS); in main() 174 again: if (mount(special, mountp, mflg, MNTTYPE_TMPFS, NULL, 0, in main() 185 if (!in_mnttab(mountp) && mount_attempts-- > 0) { in main() 191 myname, mountp, special); in main() 200 special, mountp); in main()
|
/titanic_50/usr/src/lib/libdiskmgt/common/ |
H A D | inuse_fs.c | 56 char *mountp; member 136 char *mountp = ""; in inuse_fs() local 138 if (listp->mountp != NULL) in inuse_fs() 139 mountp = listp->mountp; in inuse_fs() 142 libdiskmgt_add_str(attrs, DM_USED_NAME, mountp, errp); in inuse_fs() 323 vfsp->mountp = strdup(vp->vfs_mountp); in add_use_record() 324 if (vfsp->mountp == NULL) { in add_use_record() 329 vfsp->mountp = NULL; in add_use_record() 346 free((void *)listp->mountp); in free_vfstab()
|
H A D | inuse_mnt.c | 54 char *mountp; member 109 libdiskmgt_add_str(attrs, DM_USED_NAME, listp->mountp, errp); in inuse_mnt() 171 free((void *)listp->mountp); in free_mnttab() 185 libdiskmgt_str_eq(elementp->mountp, listp->mountp)) { in in_list() 265 currp->mountp = strdup(entry.mnt_mountp); in load_mnttab() 266 if (currp->mountp == NULL) { in load_mnttab() 325 currp->mountp = strdup("swap"); in load_mnttab() 326 if (currp->mountp == NULL) { in load_mnttab()
|
/titanic_50/usr/src/cmd/fs.d/mntfs/ |
H A D | mount.c | 68 char *special, *mountp; in main() local 130 mountp = argv[optind++]; in main() 137 do_mount(special, mountp, flags); in main() 190 do_mount(char *special, char *mountp, int rflag) in do_mount() argument 201 if (mount(special, mountp, rflag | MS_OPTIONSTR, fstype, NULL, 0, in do_mount() 203 rpterr(special, mountp); in do_mount() 209 special, mountp); in do_mount()
|
/titanic_50/usr/src/cmd/fs.d/fd/ |
H A D | mount.c | 65 char *special, *mountp; in main() local 130 mountp = argv[optind++]; in main() 139 do_mount(special, mountp, flags); in main() 199 do_mount(char *special, char *mountp, int rflag) in do_mount() argument 208 if (mount(special, mountp, rflag | MS_OPTIONSTR, in do_mount() 210 rpterr(special, mountp); in do_mount() 215 special, mountp); in do_mount()
|
/titanic_50/usr/src/cmd/fs.d/udfs/mount/ |
H A D | mount.c | 63 char *special, *mountp; in main() local 118 mountp = argv[optind++]; in main() 140 do_mount(special, mountp, flags); in main() 201 do_mount(char *special, char *mountp, int flag) in do_mount() argument 210 if (mount(special, mountp, flag | MS_DATA | MS_OPTIONSTR, in do_mount() 212 rpterr(special, mountp); in do_mount() 217 special, mountp); in do_mount()
|
/titanic_50/usr/src/cmd/fs.d/proc/ |
H A D | mount.c | 68 char *special, *mountp; in main() local 132 mountp = argv[optind++]; in main() 137 do_mount(special, mountp, roflag ? MS_RDONLY : 0); in main() 195 do_mount(char *special, char *mountp, int rflag) in do_mount() argument 209 if (mount(special, mountp, rflag | MS_OPTIONSTR, fstype, NULL, 0, in do_mount() 211 rpterr(special, mountp); in do_mount() 216 special, mountp); in do_mount()
|
/titanic_50/usr/src/cmd/initpkg/ |
H A D | mountall.sh | 251 while read special fsckdev mountp fstype fsckpass automnt mntopts 306 /usr/bin/grep " $mountp " /etc/mnttab >/dev/null 2>&1 && continue 312 saveentry $fstype "$OPTIONS" $special $mountp 348 saveentry $fstype "$OPTIONS" $special $mountp 359 0|40) saveentry $fstype "$OPTIONS" $special $mountp 362 32) checkfs $fsckdev $fstype $mountp 363 saveentry $fstype "$OPTIONS" $special $mountp
|
H A D | umountall.sh | 253 while read dev mountp fstype mode dummy 255 case "${mountp}" in 352 fuser -c -k $mountp 1>&2 356 umount ${UMOUNTFLAG} ${mountp} 1>&2 363 fslist="$fslist $mountp"
|
/titanic_50/usr/src/lib/libfsmgt/common/ |
H A D | fs_mounts.c | 52 static struct mnttab *create_mnttab_filter(char *resource, char *mountp, 59 char *mountp); 73 free(headp->mountp); in fs_free_mount_list() 159 fs_get_filtered_mount_list(char *resource, char *mountp, char *fstype, in fs_get_filtered_mount_list() argument 175 search_entry = create_mnttab_filter(resource, mountp, fstype, in fs_get_filtered_mount_list() 554 newp->mountp = strdup(mnttab_entry.mnt_mountp); in create_mntlist_entry() 555 if (newp->mountp == NULL) { in create_mntlist_entry() 614 newp->mountp = strdup(mnttab_entry.mnt_mountp); in create_extmntlist_entry() 615 if (newp->mountp == NULL) { in create_extmntlist_entry() 656 create_mnttab_filter(char *resource, char *mountp, char *fstype, char *mntopts, in create_mnttab_filter() argument [all …]
|
H A D | libfsmgt.h | 59 char *mountp; member 72 char *mountp; member 521 char *mountp, char *fstype, char *mntopts, 1022 nfs_mntlist_t *nfs_get_filtered_mount_list(char *resource, char *mountp,
|
/titanic_50/usr/src/cmd/svc/shell/ |
H A D | fs_include.sh | 56 while read special fsckdev mountp fstype fsckpass automnt mntopts; do 71 [ "x$mountp" = "x$1" ] && break 76 while read special fsckdev mountp fstype fsckpass automnt mntopts; do 108 while read special mountp fstype mntopts mnttime; do 109 [ "x$mountp" = "x$1" ] && break
|
/titanic_50/usr/src/cmd/fs.d/bootfs/ |
H A D | mount.c | 66 char *mountp; /* Entity being mounted on */ in main() local 119 mountp = argv[argc - 1]; in main() 127 if (mount(special, mountp, flags | MS_OPTIONSTR, MNTTYPE_BOOTFS, NULL, in main() 135 special, mountp); in main()
|
/titanic_50/usr/src/cmd/fs.d/ |
H A D | mount.c | 227 *mountp, /* argument of mount directory */ in main() local 422 mountp = argv[optind++]; in main() 424 mountp = NULL; in main() 428 mountp == NULL) { in main() 431 mountp == NULL) { in main() 446 vref.vfs_mountp = mountp; in main() 458 special = vref.vfs_special = mountp; in main() 459 mountp = vref.vfs_mountp = NULL; in main() 472 if (mountp == NULL) in main() 473 mountp = vget.vfs_mountp; in main() [all …]
|
/titanic_50/usr/src/cmd/fs.d/lofs/mount/ |
H A D | mount.c | 70 char *mountp; /* Entity being mounted on */ in main() local 122 mountp = argv[argc - 1]; in main() 129 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main() 137 special, mountp); in main()
|
/titanic_50/usr/src/cmd/fs.d/ctfs/ |
H A D | mount.c | 65 char *mountp; /* Entity being mounted on */ in main() local 137 mountp = argv[argc - 1]; in main() 145 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main() 154 special, mountp); in main()
|
/titanic_50/usr/src/cmd/fs.d/objfs/ |
H A D | mount.c | 65 char *mountp; /* Entity being mounted on */ in main() local 137 mountp = argv[argc - 1]; in main() 145 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main() 154 special, mountp); in main()
|
/titanic_50/usr/src/cmd/fs.d/sharefs/ |
H A D | mount.c | 65 char *mountp; /* Entity being mounted on */ in main() local 137 mountp = argv[argc - 1]; in main() 145 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main() 154 special, mountp); in main()
|
/titanic_50/usr/src/cmd/fs.d/hsfs/mount/ |
H A D | mount.c | 82 char *special, *mountp; in main() local 166 mountp = argv[optind++]; in main() 224 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main() 226 rpterr(special, mountp); in main() 232 special, mountp); in main()
|
/titanic_50/usr/src/cmd/stmsboot/ |
H A D | mpxio-upgrade | 115 $mountp >/dev/msglog 2>&1` 133 $new_special $mountp >/dev/msglog 2>&1 164 if [ -n "$mountp" ]; then
|
/titanic_50/usr/src/cmd/fs.d/nfs/rquotad/ |
H A D | rpc.rquotad.c | 409 quotactl(cmd, mountp, uid, dqp) in quotactl() argument 411 char *mountp; 422 if ((mountp == NULL) && (cmd == Q_ALLSYNC)) { 450 if (mountp == NULL || mountp[0] == '\0') { 454 (void) strlcpy(mountpoint, mountp, sizeof (mountpoint));
|