Home
last modified time | relevance | path

Searched refs:fstype (Results 1 – 25 of 42) sorted by relevance

12

/dragonfly/usr.sbin/makefs/
H A Dmakefs.c97 fstype_t *fstype; in main() local
115 if (fstype->prepare_options) in main()
116 fstype->prepare_options(&fsoptions); in main()
148 usage(fstype, &fsoptions); in main()
222 usage(fstype, &fsoptions); in main()
250 if (fstype->cleanup_options) in main()
255 fstype->prepare_options(&fsoptions); in main()
275 usage(fstype, &fsoptions); in main()
290 usage(fstype, &fsoptions); in main()
299 if (!strcmp(fstype->type, "hammer2")) in main()
[all …]
/dragonfly/etc/rc.d/
H A Dmountcritremote53 fstype=${i%:*}
55 [ "${fstype}" = "nfs" ] && continue
56 case "`mount -d -a -t ${fstype}`" in
57 *mount_${fstype}*)
59 mount -a -t ${fstype}
H A Dmountcritlocal33 fstype=${i%:*}
34 mount_excludes="${mount_excludes}${fstype},"
/dragonfly/sbin/diskinfo/
H A Ddiskinfo.c82 } else if (dpart.media_size == 0 && dpart.fstype == 0 && in main()
127 if (dpart->fstype) { in dumppart()
129 if (dpart->fstype < 0 || in dumppart()
130 dpart->fstype >= (int)FSMAXTYPES) { in dumppart()
131 printf("%d", dpart->fstype); in dumppart()
133 printf("%s", fstypenames[dpart->fstype]); in dumppart()
/dragonfly/stand/boot/pc32/libi386/
H A Dbiosdisk.c392 if ((fstype == FS_SWAP) || in print_partition()
393 (fstype == FS_VINUM) || in print_partition()
394 (fstype == FS_HAMMER) || in print_partition()
395 (fstype == FS_HAMMER2) || in print_partition()
396 (fstype == FS_BSDFFS) || in print_partition()
397 (fstype == FS_ZFS) || in print_partition()
398 (fstype == FS_JFS2) || in print_partition()
399 ((fstype == FS_UNUSED) && in print_partition()
406 ((fstype == FS_BSDFFS) || (fstype == FS_UNUSED) || in print_partition()
414 (fstype == FS_ZFS) ? "ZFS" : in print_partition()
[all …]
/dragonfly/bin/df/
H A Ddf.c69 int fstype; member
107 const char *fstype; in main() local
112 fstype = "ufs"; in main()
162 fstype = optarg; in main()
216 if (mount(fstype, mntpt, MNT_RDONLY, in main()
386 mwp->fstype = imax(mwp->fstype, strlen("Type")); in prtstat()
399 printf(" %-*s", mwp->fstype, "Type"); in prtstat()
414 printf(" %-*s", mwp->fstype, sfsp->f_fstypename); in prtstat()
460 mwp->fstype = imax(mwp->fstype, strlen(sfsp->f_fstypename)); in update_maxwidths()
/dragonfly/sys/vfs/hammer2/
H A Dhammer2_ondisk.c586 uuid_t fsid, fstype; in hammer2_init_volumes() local
599 bzero(&fstype, sizeof(fstype)); in hammer2_init_volumes()
635 fstype = voldata->fstype; in hammer2_init_volumes()
655 if (bcmp(&fstype, &voldata->fstype, sizeof(fstype))) { in hammer2_init_volumes()
656 hammer2_print_uuid_mismatch(&fstype, in hammer2_init_volumes()
657 &voldata->fstype, "fstype"); in hammer2_init_volumes()
/dragonfly/usr.sbin/makefs/hammer2/
H A Dhammer2_ondisk.c584 uuid_t fsid, fstype; in hammer2_init_vfsvolumes() local
597 bzero(&fstype, sizeof(fstype)); in hammer2_init_vfsvolumes()
633 fstype = voldata->fstype; in hammer2_init_vfsvolumes()
653 if (bcmp(&fstype, &voldata->fstype, sizeof(fstype))) { in hammer2_init_vfsvolumes()
654 hammer2_print_uuid_mismatch(&fstype, in hammer2_init_vfsvolumes()
655 &voldata->fstype, "fstype"); in hammer2_init_vfsvolumes()
/dragonfly/usr.sbin/autofs/
H A Dautomountd.c167 char *key, *options, *fstype, *nobrowse, *retrycnt, *tmp; in handle_request() local
312 fstype = pick_option("fstype=", &options); in handle_request()
313 if (fstype == NULL) { in handle_request()
316 fstype = checked_strdup("nfs"); in handle_request()
319 if (strcmp(fstype, "nfs") == 0) { in handle_request()
337 f = auto_popen("mount", "-t", fstype, "-o", options, in handle_request()
/dragonfly/sbin/hammer2/
H A Dcmd_cleanup.c43 char *fstype; in cmd_cleanup() local
61 fstype = fsary[i].f_fstypename; in cmd_cleanup()
65 if (strcmp(fstype, "hammer2") != 0) in cmd_cleanup()
H A Dondisk.c233 fso.fstype = voldata.fstype; in hammer2_add_volume()
246 uuid = voldata.fstype; in hammer2_add_volume()
247 if (!uuid_equal(&fso.fstype, &uuid, NULL)) in hammer2_add_volume()
248 hammer2_err_uuid_mismatch(&fso.fstype, in hammer2_add_volume()
/dragonfly/usr.sbin/fstyp/
H A Dhammer.c47 static hammer_uuid_t fsid, fstype; in test_ondisk() local
65 memcpy(&fstype, &ondisk->vol_fstype, sizeof(fstype)); in test_ondisk()
72 if (!uuid_equal(&ondisk->vol_fstype, &fstype, NULL)) in test_ondisk()
H A Dhammer2.c77 static uuid_t fsid, fstype; in test_voldata() local
104 memcpy(&fstype, &voldata->fstype, sizeof(fstype)); in test_voldata()
114 if (!uuid_equal(&fstype, &voldata->fstype, NULL)) { in test_voldata()
/dragonfly/libexec/makewhatis.local/
H A Dmakewhatis.local.sh50 localdirs=`find -H $dirs -fstype local \! -fstype rdonly -type d -prune -print`
/dragonfly/etc/periodic/daily/
H A D100.clean-disks44 rc=$(find / \( ! -fstype local -o -fstype rdonly \) -prune -o \
/dragonfly/sbin/hammer/
H A Dondisk.c152 char *fstype; in __verify_volume() local
164 hammer_uuid_to_string(&ondisk->vol_fstype, &fstype); in __verify_volume()
167 "this is a HAMMER volume", volume->name, fstype); in __verify_volume()
170 free(fstype); in __verify_volume()
863 char *fstype, *fsid; in print_blockmap() local
869 hammer_uuid_to_string(&ondisk->vol_fstype, &fstype); in print_blockmap()
871 printf(INDENT"vol_fstype\t%s", fstype); in print_blockmap()
872 if (strcmp(fstype, "61dc63ac-6e38-11dc-8513-01301bb8a9f5") == 0) in print_blockmap()
877 free(fstype); in print_blockmap()
H A Dcmd_info.c49 char *fstype, *path; in hammer_cmd_info() local
65 fstype = stfsbuf[i].f_fstypename; in hammer_cmd_info()
67 if ((strcmp(fstype, "hammer")) == 0) { in hammer_cmd_info()
H A Dcmd_cleanup.c109 char *fstype, *fs, *path; in hammer_cmd_cleanup() local
124 fstype = stfsbuf[i].f_fstypename; in hammer_cmd_cleanup()
126 if ((strcmp(fstype, "hammer") == 0) || in hammer_cmd_cleanup()
127 ((strcmp(fstype, "null") == 0) && in hammer_cmd_cleanup()
/dragonfly/usr.bin/locate/locate/
H A Dupdatedb.sh80 for fstype in $FILESYSTEMS; do
81 excludes="$excludes $or -fstype $fstype"
/dragonfly/etc/periodic/weekly/
H A D340.noid20 \( ! -fstype local -prune -or -name \* \) -and \
/dragonfly/sbin/mount/
H A Dmount.c827 if (info.fstype >= 0 && info.fstype < (int)FSMAXTYPES) { in checkdisklabel()
828 if (fstype_to_vfsname[info.fstype]) { in checkdisklabel()
829 *vfstypep = fstype_to_vfsname[info.fstype]; in checkdisklabel()
/dragonfly/contrib/wpa_supplicant/src/utils/
H A Dwpa_debug.c151 char *tmp2, *tmp_path, *fstype; in wpa_debug_open_linux_tracing() local
155 fstype = strtok_r(NULL, " ", &tmp2); in wpa_debug_open_linux_tracing()
156 if (fstype && strcmp(fstype, "debugfs") == 0) { in wpa_debug_open_linux_tracing()
/dragonfly/etc/periodic/security/
H A D100.chksetuid55 find -sx $MP /dev/null \( ! -fstype local \) -prune -o -type f \
H A D110.neggrpperm53 n=$(find -sx $MP /dev/null \( ! -fstype local \) -prune -o -type f \
/dragonfly/nrelease/root/etc/
H A Ddisklabel.ad0s18 # size offset fstype [fsize bsize bps/cpg]

12