Searched defs:mounted (Results 1 - 14 of 14) sorted by relevance

/illumos-gate/usr/src/cmd/svc/shell/
H A Dfs_include.sh100 # mnttime time at which file system was mounted
148 # 33 file system is already mounted
199 33) # already mounted
277 # mounted $path $fsopts $fstype
280 # mounted with all required filesystem options by going through /etc/mnttab
285 # 1 The filesystem is not currently mounted, or mounted without required
286 # options, or a filesystem of a different type is mounted instead.
288 mounted() { function
342 # If the specified file system is already mounted wit
[all...]
/illumos-gate/usr/src/lib/libtsol/common/
H A Dgetpathbylabel.c175 FILE *mounted; local
180 if ((mounted = fopen(MNTTAB, "rF")) == NULL) {
184 resetmnttab(mounted);
185 while (getmntent(mounted, &mnt) == NULL) {
201 (void) fclose(mounted);
206 * This function attempts to convert local zone NFS mounted pathnames
207 * into equivalent global zone NFS mounted pathnames. At present
219 * mnttab to determine the path where it should be mounted in the
434 * automounter hasn't yet mounted its
441 * this should be mounted a
[all...]
/illumos-gate/usr/src/lib/librdc/common/
H A Drdcrules.c414 mounted(char *device) function
443 /* Assume the worst, that it is mounted */
525 if (mounted(rdc->pfile)) {
539 " is currently mounted", rdc->pfile);
/illumos-gate/usr/src/cmd/avs/rdc/
H A Dsndrsubr.c63 mounted(char *device) function
94 /* Assume the worst, that it is mounted */
/illumos-gate/usr/src/cmd/fs.d/udfs/fsck/
H A Dutilities.c504 * Check to see if unraw version of name is already mounted.
506 * to see if it is really looks mounted.
509 mounted(char *name) function
537 found = 2; /* mounted as RO */
539 found = 1; /* mounted as R/W */
/illumos-gate/usr/src/cmd/svr4pkg/hdrs/
H A Dinstall.h119 char *remote_name; /* client's mounted filesystem */
123 unsigned mounted:1; /* actually mounted right now */ member in struct:fstable
125 unsigned cl_mounted:1; /* mounted in client space */
/illumos-gate/usr/src/lib/libzfs/common/
H A Dlibzfs_changelist.c46 * mounted/shared. This prior state dictates whether we remount/reshare the
152 * whether the filesystem was previously shared or mounted. The action we take
155 * previously mounted/shared. Otherwise, we always remount/reshare the
201 boolean_t mounted; local
221 * Remount if previously mounted or mountpoint was legacy,
232 mounted = zfs_is_mounted(cn->cn_handle, NULL);
234 if (!mounted && (cn->cn_mounted ||
242 mounted = TRUE;
246 * If the file system is mounted we always re-share even
250 if (sharenfs && mounted)
[all...]
H A Dlibzfs_diff.c664 boolean_t mounted; local
666 mounted = is_mounted(di->zhp->zfs_hdl, dsnm, mntpt);
667 if (mounted == B_FALSE) {
674 /* Avoid a double slash at the beginning of root-mounted datasets */
H A Dlibzfs_pool.c1377 * mounted datasets in the pool.
3763 boolean_t mounted = B_FALSE; local
3785 /* find out if the dataset is mounted */
3786 mounted = is_mounted(zhp->zpool_hdl, dsname, &mntpnt);
3793 if (mounted) {
/illumos-gate/usr/src/cmd/lp/cmd/lpsched/
H A Dnodes.h99 short mounted; /* # times currently mounted */ member in struct:fstat_node
152 short mounted; member in struct:pwstat_node
190 # define RSS_PWMAND 0x00000008 /* pwheel must be mounted */
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm_loader.c710 * if BE is mounted, dir does not point to correct directory
756 int mounted; local
758 mounted = bam_mount_be(entry, &dir);
759 if (mounted != BE_SUCCESS && mounted != BE_ERR_MOUNTED) {
764 bam_error(_("%s is not mounted\n"), entry->title);
914 if (mounted != BE_ERR_MOUNTED) {
/illumos-gate/usr/src/cmd/fs.d/ufs/df/
H A Ddf.c292 * constructing the list of mounted file systems. This
340 * Construct the list of mounted file systems.
465 * mounted. N.B. checks for a valid UFS superblock.
682 * Given a name like /dev/dsk/c1d0s2, returns the mounted path, like /usr.
1023 FILE *mounted; local
1028 if ((mounted = fopen(MNTTAB, "r")) == NULL) {
1033 resetmnttab(mounted);
1034 while (getextmntent(mounted, &mnt, sizeof (struct extmnttab)) == NULL) {
1042 (void) fclose(mounted);
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dutilities.c1046 * Check to see if unraw version of name is already mounted.
1051 mounted(caddr_t name, caddr_t devstr, size_t str_size) function
1061 * It's mounted. With or without write access?
1064 found = M_RO; /* mounted as RO */
1066 found = M_RW; /* mounted as R/W */
/illumos-gate/usr/src/cmd/avs/dsw/
H A Diiadm.c1775 mounted(char *t) function
1992 if (mounted(shadow_volume)) {
1995 "Shadow volume is mounted, unmount it first"), NULL);
2522 if (mounted(t)) {
2524 dsw_error(gettext("Target of copy/update is mounted, "
2629 if (mounted(t)) {
2631 dsw_error(gettext("Target of copy/update is mounted, "
3015 if (mounted(volume))
3016 dsw_error(gettext("Can't export a mounted volume"), NULL);
3083 if (mounted(vo
[all...]

Completed in 142 milliseconds