| /f-stack/freebsd/contrib/openzfs/lib/libshare/ |
| H A D | libshare.c | 61 fstype->ops = ops; in register_fstype() 67 fstypes = fstype; in register_fstype() 69 return (fstype); in register_fstype() 91 fstype = fstypes; in sa_enable_share() 107 fstype = fstype->next; in sa_enable_share() 125 fstype = fstypes; in sa_disable_share() 136 fstype = fstype->next; in sa_disable_share() 159 fstype = fstype->next; in sa_is_shared() 172 fstype = fstype->next; in sa_commit_shares() 306 fstype = fstype->next; in sa_validate_shareopts() [all …]
|
| H A D | libshare_impl.h | 39 #define FSINFO(impl_share, fstype) \ argument 40 (&(impl_share->sa_fsinfo[fstype->fsinfo_index]))
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/ |
| H A D | readonly_001_pos.ksh | 59 typeset fstype=$(get_prop type $dataset) 61 if [[ $fstype == "filesystem" ]] ; then 73 typeset fstype=$(get_prop type $dataset) 75 if [[ $fstype == "filesystem" ]] ; then 92 typeset fstype=$(get_prop type $dataset) 100 case $fstype in
|
| /f-stack/freebsd/contrib/openzfs/contrib/dracut/02zfsexpandknowledge/ |
| H A D | module-setup.sh.in | 45 local fstype 57 if [ "$fstype" != "zfs" ]; then continue ; fi 75 local fstype 107 fstype=$(get_devtype "$dev") 108 host_fs_types["$dev"]="$fstype"
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/ |
| H A D | send-wR_encrypted_zvol.ksh | 41 ismounted $recvmnt $fstype && log_must umount $recvmnt 42 ismounted $mntpnt $fstype && log_must umount $mntpnt 61 typeset fstype=none 72 fstype=ext4 77 fstype=$NEWFS_DEFAULT_FS
|
| /f-stack/freebsd/contrib/openzfs/lib/libzfs/os/freebsd/ |
| H A D | libzfs_zmount.c | 77 do_mount_(const char *spec, const char *dir, int mflag, char *fstype, in do_mount_() argument 86 assert(fstype != NULL); in do_mount_() 87 assert(strcmp(fstype, MNTTYPE_ZFS) == 0); in do_mount_() 107 build_iovec(&iov, &iovlen, "fstype", fstype, (size_t)-1); in do_mount_()
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_vfs.c | 122 mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype, char *fspath, in mount_snapshot() argument 142 if (strlen(fstype) >= MFSNAMELEN || strlen(fspath) >= MNAMELEN) in mount_snapshot() 144 if (error == 0 && (vfsp = vfs_byname_kld(fstype, td, &error)) == NULL) in mount_snapshot()
|
| /f-stack/freebsd/contrib/openzfs/etc/zfs/ |
| H A D | zfs-functions.in | 341 local fs mntpnt fstype opts rest TMPFILE 346 while read -r fs mntpnt fstype opts rest; do 347 if echo "$fs $mntpnt $fstype $opts" | grep -qE "$match"; then 392 while read -r fs mntpnt fstype opts; do 395 echo "$fstype" | egrep -qE '^swap' && continue 397 if echo "$fs $mntpnt $fstype $opts" | grep -qE "$match"; then
|
| /f-stack/freebsd/kern/ |
| H A D | vfs_init.c | 140 vfs_byname_kld(const char *fstype, struct thread *td, int *error) in vfs_byname_kld() argument 145 vfsp = vfs_byname(fstype); in vfs_byname_kld() 150 *error = kern_kldload(td, fstype, &fileid); in vfs_byname_kld() 158 vfsp = vfs_byname(fstype); in vfs_byname_kld()
|
| H A D | vfs_mount.c | 628 char *fstype, *fspath, *errmsg; in vfs_donmount() local 836 char *fstype; in sys_mount() local 860 fstype = malloc(MFSNAMELEN, M_TEMP, M_WAITOK); in sys_mount() 861 error = copyinstr(uap->type, fstype, MFSNAMELEN, NULL); in sys_mount() 863 free(fstype, M_TEMP); in sys_mount() 867 AUDIT_ARG_TEXT(fstype); in sys_mount() 868 vfsp = vfs_byname_kld(fstype, td, &error); in sys_mount() 869 free(fstype, M_TEMP); in sys_mount() 1288 const char *fstype, /* Filesystem type. */ in vfs_domount() argument 1339 vfsp = vfs_byname(fstype); in vfs_domount() [all …]
|
| /f-stack/freebsd/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | vfs.h | 105 int mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype,
|
| /f-stack/freebsd/contrib/openzfs/tests/zfs-tests/include/ |
| H A D | libtest.shlib | 172 typeset fstype=$2 173 [[ -z $fstype ]] && fstype=zfs 176 case $fstype in 190 mount -pt $fstype | while read dev dir _t _flags; do 194 out=$(df -F $fstype $1 2>/dev/null) 208 out=$(df -t $fstype $1 2>/dev/null)
|