Lines Matching refs:fspath
77 static int vfs_domount(struct thread *td, const char *fstype, char *fspath,
662 vfs_mount_alloc(struct vnode *vp, struct vfsconf *vfsp, const char *fspath, in vfs_mount_alloc() argument
694 strlcpy(mp->mnt_stat.f_mntonname, fspath, MNAMELEN); in vfs_mount_alloc()
805 char *fstype, *fspath, *errmsg; in vfs_donmount() local
809 errmsg = fspath = NULL; in vfs_donmount()
835 error = vfs_getopt(optlist, "fspath", (void **)&fspath, &fspathlen); in vfs_donmount()
836 if (error || fspathlen <= 0 || fspath[fspathlen - 1] != '\0') { in vfs_donmount()
997 error = vfs_domount(td, fstype, fspath, fsflags, jail_export, &optlist); in vfs_donmount()
1015 error = vfs_domount(td, fstype, fspath, fsflags, jail_export, in vfs_donmount()
1113 char *fspath, /* Mount path. */ in vfs_domount_first() argument
1177 mp = vfs_mount_alloc(vp, vfsp, fspath, td->td_ucred); in vfs_domount_first()
1587 char *fspath, /* Mount path. */ in vfs_domount() argument
1604 if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN) in vfs_domount()
1654 UIO_SYSSPACE, fspath); in vfs_domount()
1673 strcpy(pathbuf, fspath); in vfs_domount()