Home
last modified time | relevance | path

Searched refs:special (Results 1 – 25 of 237) sorted by relevance

12345678910

/illumos-gate/usr/src/cmd/initpkg/
H A Dswapadd.sh106 while read special t1 t2 fstype t3 t4 t5; do
110 case "$special" in
125 if [ ! -b $special ]; then
135 checkmount $special
137 if [ -f $special -a -w $special -o -b $special ]; then
138 swap -$PASS -a $special >/dev/null
148 swap -l 2>/dev/null | grep '\<'${special}'\>' >/dev/null 2>&1 \
149 || swap -$PASS -a $special >/dev/null
H A Dmountall.sh251 while read special fsckdev mountp fstype fsckpass automnt mntopts
253 case $special in
293 echo "mountall: FSType of $special cannot be identified" 1>&2
312 saveentry $fstype "$OPTIONS" $special $mountp
348 saveentry $fstype "$OPTIONS" $special $mountp
359 0|40) saveentry $fstype "$OPTIONS" $special $mountp
363 saveentry $fstype "$OPTIONS" $special $mountp
367 echo "$special already mounted"
/illumos-gate/usr/src/cmd/svc/shell/
H A Dfs_include.sh55 while read special fsckdev mountp fstype fsckpass automnt mntopts; do
56 case "$special" in
75 while read special fsckdev mountp fstype fsckpass automnt mntopts; do
77 case "$special" in
83 [ "x$special" = "x$1" ] && break
107 while read special mountp fstype mntopts mnttime; do
322 special="$5"
328 [ "$special" = "-" ] && special=""
334 cmd="/sbin/mount $opts $type $fsopts $special $path"
/illumos-gate/usr/src/cmd/fs.d/dev/
H A Dmount.c56 static char *special; variable
105 "device\n"), typename, special); in do_mount()
111 typename, mountpt, special); in do_mount()
116 typename, special, mountpt); in do_mount()
120 "filesystem type.\n"), typename, special); in do_mount()
126 typename, special, mountpt); in do_mount()
130 "device\n"), typename, special); in do_mount()
134 "filesystem\n"), typename, special); in do_mount()
140 typename, special); in do_mount()
144 "%s\n"), typename, special, strerror(errno)); in do_mount()
[all …]
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Dinuse_mnt.c51 char *special; member
105 if (libdiskmgt_str_eq(slice, listp->special)) { in inuse_mnt()
134 events_new_slice_event(listp->special, DM_EV_TCHANGE); in diff_mnttab()
146 events_new_slice_event(listp->special, DM_EV_TCHANGE); in diff_mnttab()
168 free((void *)listp->special); in free_mnttab()
182 if (libdiskmgt_str_eq(elementp->special, listp->special) && in in_list()
253 currp->special = strdup(entry.mnt_special); in load_mnttab()
254 if (currp->special == NULL) { in load_mnttab()
315 currp->special = strdup(fullpath); in load_mnttab()
316 if (currp->special == NULL) { in load_mnttab()
/illumos-gate/usr/src/cmd/fs.d/ufs/tunefs/
H A Dtunefs.c149 char *special, *name, *mountpoint = NULL; in main() local
160 special = argv[argc - 1]; in main()
166 if (stat64(special, &st) >= 0) { in main()
172 searchmnttab(&special, &mountpoint); in main()
179 searchmnttab(&special, &mountpoint); in main()
186 searchvfstab(&special); in main()
188 if ((special = getfullrawname(special)) == NULL) { in main()
193 if (*special == '\0') { in main()
199 if (stat64(special, &st) < 0) { in main()
200 fprintf(stderr, "tunefs: "); perror(special); in main()
[all …]
/illumos-gate/usr/src/cmd/fs.d/fd/
H A Dmount.c62 char *special, *mountp; in main() local
126 special = argv[optind++]; in main()
136 do_mount(special, mountp, flags); in main()
196 do_mount(char *special, char *mountp, int rflag) in do_mount() argument
205 if (mount(special, mountp, rflag | MS_OPTIONSTR, in do_mount()
207 rpterr(special, mountp); in do_mount()
212 special, mountp); in do_mount()
/illumos-gate/usr/src/cmd/fs.d/mntfs/
H A Dmount.c65 char *special, *mountp; in main() local
126 special = argv[optind++]; in main()
134 do_mount(special, mountp, flags); in main()
187 do_mount(char *special, char *mountp, int rflag) in do_mount() argument
198 if (mount(special, mountp, rflag | MS_OPTIONSTR, fstype, NULL, 0, in do_mount()
200 rpterr(special, mountp); in do_mount()
206 special, mountp); in do_mount()
/illumos-gate/usr/src/cmd/fs.d/proc/
H A Dmount.c65 char *special, *mountp; in main() local
128 special = argv[optind++]; in main()
134 do_mount(special, mountp, roflag ? MS_RDONLY : 0); in main()
192 do_mount(char *special, char *mountp, int rflag) in do_mount() argument
206 if (mount(special, mountp, rflag | MS_OPTIONSTR, fstype, NULL, 0, in do_mount()
208 rpterr(special, mountp); in do_mount()
213 special, mountp); in do_mount()
/illumos-gate/usr/src/cmd/fs.d/udfs/mount/
H A Dmount.c61 char *special, *mountp; in main() local
115 special = argv[optind++]; in main()
138 do_mount(special, mountp, flags); in main()
199 do_mount(char *special, char *mountp, int flag) in do_mount() argument
208 if (mount(special, mountp, flag | MS_DATA | MS_OPTIONSTR, in do_mount()
210 rpterr(special, mountp); in do_mount()
215 special, mountp); in do_mount()
/illumos-gate/usr/src/cmd/stmsboot/
H A Dmpxio-upgrade90 if [ -n "$special" ]; then
99 ISPHYS=`echo $special |$AWK '/^\/dev\/dsk/ {print}'`;
102 new_special=$special
105 new_special=`$STMSBOOTUTIL -m $special`
125 new_special=`$STMSBOOTUTIL -m $special`
165 case "$special" in
167 new_special=$special
170 new_special=`$STMSBOOTUTIL -m $special`
333 FILEDEV=`$ECHO $special | \
/illumos-gate/usr/src/cmd/iscsid/
H A Discsi-initiator99 while read special fsckdev mountp fstype fsckpass automnt mntopts; do
100 case $special in
113 echo "$special cannot be identified" 1>&2
147 echo "$special already mounted"
176 while read special fsckdev mountp fstype fsckpass automnt mntopts; do
177 case $special in
/illumos-gate/usr/src/cmd/fs.d/bootfs/
H A Dmount.c65 char *special; /* Entity being mounted */ in main() local
118 special = argv[argc - 2]; in main()
127 if (mount(special, mountp, flags | MS_OPTIONSTR, MNTTYPE_BOOTFS, NULL, in main()
130 perror(special); in main()
135 special, mountp); in main()
/illumos-gate/usr/src/cmd/fs.d/ufs/newfs/
H A Dnewfs.c156 char *special, *name; in main() local
327 if (special == NULL) { in main()
332 if (*special == '\0') { in main()
349 if (*special == '\0') { in main()
357 if (*special == '\0') in main()
419 special); in main()
423 special); in main()
428 special); in main()
608 special, sbp->fs_fsmnt); in main()
612 special); in main()
[all …]
/illumos-gate/usr/src/cmd/fs.d/lofs/mount/
H A Dmount.c69 char *special; /* Entity being mounted */ in main() local
121 special = argv[argc - 2]; in main()
129 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main()
132 perror(special); in main()
137 special, mountp); in main()
/illumos-gate/usr/src/cmd/fs.d/tmpfs/
H A Dmount.c72 char *special; in main() local
152 special = argv[optind++]; in main()
159 special, mountp, mflg, MNTTYPE_TMPFS); in main()
173 again: if (mount(special, mountp, mflg, MNTTYPE_TMPFS, NULL, 0, in main()
190 myname, mountp, special); in main()
199 special, mountp); in main()
/illumos-gate/usr/src/cmd/fs.d/ctfs/
H A Dmount.c62 char *special; /* Entity being mounted */ in main() local
134 special = argv[argc - 2]; in main()
143 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main()
146 perror(special); in main()
152 special, mountp); in main()
/illumos-gate/usr/src/cmd/fs.d/objfs/
H A Dmount.c62 char *special; /* Entity being mounted */ in main() local
134 special = argv[argc - 2]; in main()
143 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main()
146 perror(special); in main()
152 special, mountp); in main()
/illumos-gate/usr/src/cmd/fs.d/sharefs/
H A Dmount.c62 char *special; /* Entity being mounted */ in main() local
134 special = argv[argc - 2]; in main()
143 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main()
146 perror(special); in main()
152 special, mountp); in main()
/illumos-gate/usr/src/cmd/fs.d/
H A Dswitchout.c56 char *special = NULL; /* device special name */ variable
226 special = argv[optind]; in main()
242 if ((special == NULL) && (!usgflag)) { in main()
259 newargv[newargc++] = special; in main()
285 if (dm_inuse(special, &msg, DM_WHO_MKFS, &error) || in main()
372 vref.vfs_special = special; in lookup()
377 vref.vfs_fsckdev = special; in lookup()
384 fstype = default_fstype(special); in lookup()
H A Dmount.c416 special = argv[optind++]; in main()
418 special = NULL; in main()
443 vref.vfs_special = special; in main()
468 if (special == NULL) in main()
469 special = vget.vfs_special; in main()
536 newargv[ii++] = special; in main()
751 if (special == NULL) in vfserror()
752 special = "<null>"; in vfserror()
762 myname, special); in vfserror()
767 myname, special); in vfserror()
[all …]
H A Ddf.xcl129 msgid "[-F FSType] [-V] special inumber ..."
130 msgid "[-F FSType] [-V] [-m] [-o specific_options] special [operands]"
132 msgid "[-F FSType] [-V] [-o specific_options] special"
133 msgid "[-F FSType] [-V] [-o specific_options] special [operands]"
/illumos-gate/usr/src/cmd/fs.d/hsfs/mount/
H A Dmount.c80 char *special, *mountp; in main() local
163 special = argv[optind++]; in main()
222 if (mount(special, mountp, flags | MS_OPTIONSTR, fstype, NULL, 0, in main()
224 rpterr(special, mountp); in main()
230 special, mountp); in main()
/illumos-gate/usr/src/test/zfs-tests/tests/functional/alloc_class/
H A Dalloc_class_002_neg.ksh34 log_mustnot zpool create $TESTPOOL raidz $ZPOOL_DISKS special $CLASS_DISK0
38 log_mustnot zpool create $TESTPOOL $ZPOOL_DISKS special mirror \
43 log_mustnot zpool create $TESTPOOL raidz $ZPOOL_DISKS special raidz \
H A Dalloc_class_003_pos.ksh39 log_must zpool add $TESTPOOL special mirror \
45 log_must zpool add $TESTPOOL special mirror \
50 log_must zpool add $TESTPOOL special $CLASS_DISK0

12345678910