Searched refs:mountpoint (Results 1 - 21 of 21) sorted by relevance

/freebsd-10.0-release/tools/tools/zfsboottest/
H A Dzfsboottest.sh57 mountpoint=`df -t zfs "${bootfs}" 2>/dev/null | tail -1 | awk '{print $6}'`
58 if [ -z "${mountpoint}" ]; then
62 if [ ! -d "${mountpoint}${startdir}" ]; then
63 echo "The \"${mountpoint}${startdir}\" directory doesn't exist." >&2
90 echo "zfsboottest.sh is reading all the files in ${mountpoint}${startdir} using"
97 "${zfsboottest}" ${vdevs} - `find "${mountpoint}${startdir}" -type f | sed "s@^${mountpoint}@@"` | egrep '^[0-9a-z]{32} /' | sort -k 2 >"${list0}"
98 find "${mountpoint}${startdir}" -type f | xargs md5 -r | sed "s@ ${mountpoint}@ @" | egrep '^[0-9a-z]{32} /' | sort -k 2 >"${list1}"
/freebsd-10.0-release/usr.sbin/bsdinstall/partedit/
H A Ddiskeditor.h39 char *mountpoint; member in struct:partedit_item
H A Dpartedit.h73 const char *type, const char *mountpoint, const char *newfs);
H A Ddiskeditor.c57 if (items[item].mountpoint != NULL)
58 dlg_print_text(partitions, items[item].mountpoint, 8, &attr);
71 "Change partition type or mountpoint",
H A Dgpart_ops.c565 const char *type, const char *mountpoint, const char *newfs)
586 mountpoint = "none";
594 if (mountpoint == NULL || mountpoint[0] == '\0') {
616 md->fstab->fs_file = strdup(mountpoint);
630 if (strcmp(mountpoint, "/") == 0) {
897 /* Warn if no mountpoint set */
902 "This partition does not have a valid mountpoint "
904 "operating system, the mountpoint should be /). Are you "
914 * a mountpoint wa
564 set_default_part_metadata(const char *name, const char *scheme, const char *type, const char *mountpoint, const char *newfs) argument
[all...]
H A Dpartedit.c275 "The root FreeBSD partition must have a mountpoint of '/'.",
447 (*items)[*nitems].mountpoint = NULL;
512 items[i].mountpoint = md->fstab->fs_file;
/freebsd-10.0-release/cddl/contrib/opensolaris/lib/libzfs/common/
H A Dlibzfs_mount.c30 * mountpoint.
119 * Search the sharetab for the given mountpoint and protocol, returning
123 is_shared(libzfs_handle_t *hdl, const char *mountpoint, zfs_share_proto_t proto) argument
135 /* the mountpoint is the first entry on each line */
140 if (strcmp(buf, mountpoint) == 0) {
206 * in 'where' with the current mountpoint, and return 1. Otherwise, we return
231 * mountpoint in 'buf'.
270 char mountpoint[ZFS_MAXPROPLEN]; local
285 if (!zfs_is_mountable(zhp, mountpoint, sizeof (mountpoint), NUL
360 unmount_one(libzfs_handle_t *hdl, const char *mountpoint, int flags) argument
376 zfs_unmount(zfs_handle_t *zhp, const char *mountpoint, int flags) argument
471 char *mountpoint; local
728 char mountpoint[ZFS_MAXPROPLEN]; local
854 unshare_one(libzfs_handle_t *hdl, const char *name, const char *mountpoint, zfs_share_proto_t proto) argument
916 zfs_unshare_proto(zfs_handle_t *zhp, const char *mountpoint, zfs_share_proto_t *proto) argument
954 zfs_unshare_nfs(zfs_handle_t *zhp, const char *mountpoint) argument
960 zfs_unshare_smb(zfs_handle_t *zhp, const char *mountpoint) argument
1003 zfs_unshareall_bypath(zfs_handle_t *zhp, const char *mountpoint) argument
1022 char mountpoint[ZFS_MAXPROPLEN]; local
[all...]
/freebsd-10.0-release/cddl/compat/opensolaris/misc/
H A Dfsshare.c69 * mountpoint specified in the 'skip' argument.
91 /* Skip the given mountpoint. */
150 fsshare_main(const char *file, const char *mountpoint, const char *shareopts, argument
203 while (oldfd != NULL && (line = getline(oldfd, mountpoint)) != NULL)
214 fprintf(newfd, "%s\t%s\n", mountpoint,
245 * Add the given mountpoint to the given exports file.
248 fsshare(const char *file, const char *mountpoint, const char *shareopts) argument
251 return (fsshare_main(file, mountpoint, shareopts, 1));
255 * Remove the given mountpoint from the given exports file.
258 fsunshare(const char *file, const char *mountpoint) argument
[all...]
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/Bin/
H A Dvopstat90 USAGE: voptrace [-t] [/mountpoint]
/freebsd-10.0-release/cddl/contrib/dtracetoolkit/FS/
H A Dvopstat90 USAGE: voptrace [-t] [/mountpoint]
/freebsd-10.0-release/share/examples/hast/
H A Ducarp_down.sh39 mountpoint="/mnt/test"
66 out=`umount -f "${mountpoint}" 2>&1`
H A Ducarp_up.sh39 mountpoint="/mnt/test"
84 out=`mount -t ufs "${device}" "${mountpoint}" 2>&1`
/freebsd-10.0-release/contrib/amd/amd/
H A Damq_subr.c211 char *mountpoint; local
225 mountpoint = (mp->am_link ? mp->am_link : mp->am_mnt->mf_mount);
226 len = strlen(mountpoint);
229 if (!NSTREQ(mountpoint, dir, len))
/freebsd-10.0-release/etc/
H A Drc.initdiskless81 # temporary mountpoint.
164 # if remount_optional exists under the mountpoint, skip this check.
168 mountpoint="$(lastitem $2)"
169 [ -r $mountpoint/remount_optional ] && ( echo "$2 failed: ignoring due to remount_optional" ; return )
/freebsd-10.0-release/sys/cam/ctl/
H A Dctl_backend_block.c595 struct mount *mountpoint; local
602 (void) vn_start_write(be_lun->vn, &mountpoint, V_WAIT);
604 if (MNT_SHARED_WRITES(mountpoint)
605 || ((mountpoint == NULL)
619 vn_finished_write(mountpoint);
710 struct mount *mountpoint; local
713 (void)vn_start_write(be_lun->vn, &mountpoint, V_WAIT);
715 if (MNT_SHARED_WRITES(mountpoint)
716 || ((mountpoint == NULL)
749 vn_finished_write(mountpoint);
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_main.c214 "\t [-m mountpoint] [-R root] <pool> <vdev> ...\n"));
748 * [-R root] [-m mountpoint] <pool> <dev> ...
754 * -m Set default mountpoint for the root dataset. By default it's
777 char *mountpoint = NULL; local
808 /* Equivalent to -O mountpoint=optarg */
809 mountpoint = optarg;
854 mountpoint = propval;
919 * Check the validity of the mountpoint and direct the user to use the
920 * '-m' mountpoint option if it looks like its in use.
923 if (!force && (mountpoint
[all...]
/freebsd-10.0-release/sys/geom/journal/
H A Dg_journal.c2874 char *mountpoint; local
2925 mountpoint = mp->mnt_stat.f_mntonname;
2930 mountpoint, error);
2938 GJ_TIMER_STOP(1, &bt, "Msync time of %s", mountpoint);
2943 GJ_TIMER_STOP(1, &bt, "Sync time of %s", mountpoint);
2946 mountpoint, error);
2966 GJ_TIMER_STOP(1, &bt, "Suspend time of %s", mountpoint);
2969 mountpoint, error);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_ctldir.c45 * as a mountpoint for the snapshot. Whenever we lookup a specific snapshot, we
722 * Change the current mountpoint info:
946 char *mountpoint; local
1074 mountpoint = kmem_alloc(mountpoint_len, KM_SLEEP);
1075 (void) snprintf(mountpoint, mountpoint_len,
1078 err = mount_snapshot(curthread, vpp, "zfs", mountpoint, snapname, 0);
1079 kmem_free(mountpoint, mountpoint_len);
/freebsd-10.0-release/sys/dev/xen/blkback/
H A Dblkback.c2261 struct mount *mountpoint; local
2266 (void) vn_start_write(xbb->vn, &mountpoint, V_WAIT);
2272 vn_finished_write(mountpoint);
2392 struct mount *mountpoint; local
2398 (void)vn_start_write(xbb->vn, &mountpoint, V_WAIT);
2424 vn_finished_write(mountpoint);
/freebsd-10.0-release/sbin/growfs/
H A Dgrowfs.c1260 * Return mountpoint on which the device is currently mounted.
1297 mountpoint_to_dev(const char *mountpoint) argument
1310 if (strcmp(statfsp->f_mntonname, mountpoint) == 0)
1317 fs = getfsfile(mountpoint);
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_main.c287 "<-a | filesystem|mountpoint>\n"));
290 "<-a | filesystem|mountpoint>\n"));
665 /* create the mountpoint if necessary */
2982 "name,used,available,referenced,mountpoint";
5556 char mountpoint[ZFS_MAXPROPLEN]; local
5595 * includes those with a legacy mountpoint, or those with
5598 verify(zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, mountpoint,
5599 sizeof (mountpoint), NULL, NULL, 0, B_FALSE) == 0);
5620 * shareopts is non-legacy but the mountpoint is legacy, we
5623 if (strcmp(mountpoint, "legac
6448 char mountpoint[ZFS_MAXPROPLEN]; local
[all...]

Completed in 296 milliseconds