/freebsd/lib/libc/gen/ |
H A D | fstab.c | 127 _fs_fstab.fs_type = strsep(&p, ":\n"); in fstabscan() 128 if (_fs_fstab.fs_type) { in fstabscan() 129 if (!strcmp(_fs_fstab.fs_type, FSTAB_XX)) in fstabscan() 131 _fs_fstab.fs_mntops = _fs_fstab.fs_type; in fstabscan() 133 strcmp(_fs_fstab.fs_type, FSTAB_SW) ? in fstabscan() 187 _fs_fstab.fs_type = FSTAB_RW; in fstabscan() 191 _fs_fstab.fs_type = FSTAB_RQ; in fstabscan() 195 _fs_fstab.fs_type = FSTAB_RO; in fstabscan() 199 _fs_fstab.fs_type = FSTAB_SW; in fstabscan() 203 _fs_fstab.fs_type = FSTAB_XX; in fstabscan()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_user/zfs_list/ |
H A D | zfs_list_007_pos.ksh | 46 set -A fs_type "all" "filesystem" "snapshot" 48 set -A fs_type ${fs_type[*]} "volume" 78 log_mustnot zfs list -rH -o name -t ${fs_type[$fs]} $DEPTH_FS | grep -E "$eg_opt"
|
H A D | zfs_list.kshlib | 126 fs_type=$(mount | awk -v fs=$fs '{if ($3 == fs) print $4}' \ 129 fs_type=$(mount | awk -v fs=$fs '{if ($3 == fs) print $5}') 132 if [[ $fs_type == "zfs" ]]; then
|
/freebsd/tests/sys/cddl/zfs/tests/cli_user/zfs_list/ |
H A D | zfs_list_007_pos.ksh | 60 set -A fs_type "all" "filesystem" "snapshot" 62 set -A fs_type ${fs_type[*]} "volume" 94 …log_mustnot run_unprivileged $ZFS list -rH -o name -t ${fs_type[$fs]} $DEPTH_FS | $EGREP -e '$eg_o…
|
/freebsd/sbin/dump/ |
H A D | optr.c | 288 (new->fs_type = strdup(fs->fs_type)) == NULL || in allocfsent() 315 if ((strcmp(fs->fs_type, FSTAB_RW) && in dump_getfstab() 316 strcmp(fs->fs_type, FSTAB_RO) && in dump_getfstab() 317 strcmp(fs->fs_type, FSTAB_RQ)) || in dump_getfstab()
|
/freebsd/usr.sbin/bsdinstall/partedit/ |
H A D | partedit_x86.c | 140 partcode_path(const char *part_type, const char *fs_type) in partcode_path() argument 144 if (strcmp(fs_type, "zfs") == 0) in partcode_path()
|
H A D | partedit_generic.c | 76 partcode_path(const char *part_type, const char *fs_type) { in partcode_path() argument
|
H A D | partedit_efi.c | 98 partcode_path(const char *part_type, const char *fs_type) in partcode_path() argument
|
H A D | partedit.c | 167 free(md->fstab->fs_type); in main() 264 free(md->fstab->fs_type); in delete_part_metadata() 603 md->fstab->fs_type = strdup(fstab->fs_type); in init_fstab_metadata()
|
H A D | partedit.h | 106 const char *partcode_path(const char *scheme, const char *fs_type);
|
H A D | partedit_powerpc.c | 134 partcode_path(const char *part_type, const char *fs_type) { in partcode_path() argument
|
H A D | gpart_ops.c | 772 free(md->fstab->fs_type); in set_default_part_metadata() 784 free(md->fstab->fs_type); in set_default_part_metadata() 801 md->fstab->fs_type = strdup(FSTAB_SW); in set_default_part_metadata() 805 md->fstab->fs_type = strdup(FSTAB_RW); in set_default_part_metadata() 809 md->fstab->fs_type = strdup(FSTAB_RW); in set_default_part_metadata() 818 md->fstab->fs_mntops = strdup(md->fstab->fs_type); in set_default_part_metadata()
|
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/ |
H A D | zpl_super.c | 280 zpl_mount_impl(struct file_system_type *fs_type, int flags, zfs_mnt_t *zm) in zpl_mount_impl() argument 301 s = sget(fs_type, zpl_test_super, set_anon_super, flags, os); in zpl_mount_impl() 353 zpl_mount(struct file_system_type *fs_type, int flags, in zpl_mount() argument 358 struct super_block *sb = zpl_mount_impl(fs_type, flags, &zm); in zpl_mount()
|
/freebsd/sbin/fsck/ |
H A D | fsck.c | 222 if (BADTYPE(fs->fs_type)) in main() 249 if (BADTYPE(fs->fs_type)) in isok() 266 if (!strcmp(fs->fs_type, FSTAB_RO)) in isok() 283 if ((flags & CHECK_BACKGRD) == 0 || !strcmp(fs->fs_type, FSTAB_RO)) in isok()
|
/freebsd/usr.bin/fstat/ |
H A D | fstat.c | 245 if (fst->fs_type != PS_FST_TYPE_VNODE && in print_file_info() 246 fst->fs_type != PS_FST_TYPE_FIFO) in print_file_info() 288 switch (fst->fs_type) { in print_file_info() 314 fst->fs_type, fst->fs_fd, pid); in print_file_info()
|
H A D | fuser.c | 298 if (fst->fs_type != PS_FST_TYPE_VNODE) in dofiles()
|
/freebsd/usr.bin/procstat/ |
H A D | procstat_files.c | 356 switch (fst->fs_type) { in procstat_files() 431 if (fst->fs_type == PS_FST_TYPE_VNODE) { in procstat_files() 542 switch (fst->fs_type) { in procstat_files()
|
H A D | procstat_kqueue.c | 310 if (f->fs_type != PS_FST_TYPE_KQUEUE) in procstat_kqueues()
|
/freebsd/include/ |
H A D | fstab.h | 60 char *fs_type; /* FSTAB_* from fs_mntops */ member
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-fst-mount.m4 | 11 mount(struct file_system_type *fs_type, int flags,
|
/freebsd/sbin/umount/ |
H A D | umount.c | 225 if (strcmp(fs->fs_type, FSTAB_RW) && in umountall() 226 strcmp(fs->fs_type, FSTAB_RO) && in umountall() 227 strcmp(fs->fs_type, FSTAB_RQ)) in umountall()
|
/freebsd/sys/dev/mlx5/mlx5_core/ |
H A D | fs_core.h | 34 enum fs_type { global() enum
|
/freebsd/usr.sbin/quotaon/ |
H A D | quotaon.c | 103 strcmp(fs->fs_type, FSTAB_RW)) in main()
|
/freebsd/lib/libprocstat/ |
H A D | libprocstat.h | 118 int fs_type; /* Descriptor type. */ member
|
/freebsd/sbin/mount/ |
H A D | mount.c | 301 if (BADTYPE(fs->fs_type)) in main() 401 if (BADTYPE(fs->fs_type)) in main()
|